body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo img {
  block-size: auto;
  filter: brightness(0);
  inline-size: min(220px, 70vw);
  max-block-size: 80px;
  object-fit: contain;
  animation: logo-pulse 1.4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.97);
  }
}
