body {
  margin: 0;
}

html {
  overflow-x: hidden;
}

#loading-bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100vh;
  inline-size: 100vw;
  gap: 1rem 0;
  z-index: 9999;
}

.loading-logo {
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
