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: #FAFAF9;
  block-size: 100%;
  gap: 1.5rem 0;
  inline-size: 100%;
}

.loading {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D00A11;
  animation: pulse 1.4s ease-in-out infinite;
}

.loading .effect-1 {
  animation-delay: 0s;
}

.loading .effect-2 {
  animation-delay: 0.2s;
  background: #C0AB98;
}

.loading .effect-3 {
  animation-delay: 0.4s;
  background: #D00A11;
}

@keyframes pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
