body {
  margin: 0;
}

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

#loading-bg {
  position: absolute;
  display: flex;
  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__ring {
  block-size: 88px;
  inline-size: 88px;
  animation: rotate-loader-ring 1.8s linear infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes rotate-loader-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}
