/* Light Theme Variables */
:root {
  --bg-color: #f1f1f5;
  --text-color: #565659;
  --spinner-color: #7367f0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Splash Screen */
#splashScreen {
  position: fixed;
  inset: 0;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  z-index: 9999;
}

/* Loading Text */
#loadingText {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 1px;
}

#loadingText:after {
  content: ' .';
  animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0),
    .5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: var(--text-color);
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0),
    .5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: .25em 0 0 var(--text-color),
    .5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: .25em 0 0 var(--text-color),
    .5em 0 0 var(--text-color);
  }
}

