@font-face {
  font-family: 'Dynamo-condensed';
  src: url('fonts/Dynamo-condensed.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: 'Dynamo-condensed', sans-serif;
}


body {
  margin: 0;
  background-color: black;
}

#custom-splash {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #83effa;
  font-family: 'Dynamo-condensed', sans-serif;
}

#splash-title {
  font-size: 56px;
  margin: 0;
  letter-spacing: 1px;
}

#splash-loading {
  font-size: 22px;
  margin-top: 16px;
  display: flex;
  gap: 6px; /* Spacing between dots */
}

.dot {
  animation: blink 1.2s infinite steps(1);
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}
