:root {
  color-scheme: dark;
}
body {
  margin: 0;
}

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

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

@keyframes breathing {
  0% {
    transform: scale(0.9);
  }

  25% {
    transform: scale(1);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.9);
  }
}

.loader {
  animation: breathing 3s ease-out infinite normal;
  inline-size: 200px;
}
