body {
  margin: 0;
  height: 100vh;
}

.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.logo-container {
  position: absolute;
  left: 50%;
  top: calc(50% + 2px);
  transform: translate(-50%, -50%);
}

.dot-pulse {
  position: absolute;
  left: 50%;
  top: calc(50% + 64px);
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
}

.dot-pulse span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.dot-pulse span:nth-child(1) {
  animation-delay: 0s;
}

.dot-pulse span:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-pulse span:nth-child(3) {
  animation-delay: 0.4s;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #141414;
  }
  .logo-path {
    fill: #F8F8F8;
  }
  .dot-pulse span {
    background-color: #F8F8F8;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #F8F8F8;
  }
  .logo-path {
    fill: #141414;
  }
  .dot-pulse span {
    background-color: #141414;
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.7);
    opacity: 0.5;
  }
}
