* {
    font-family: sans-serif;
    font-size: 25pt;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px black;
}

a {
    text-decoration: none;
}

.middle-wrapper {
  display: flex;
  /*justify-content: center;*/ /* Horizontal center */
  /*align-items: center;*/     /* Vertical center */
  height: 90vh;           /* Optional: Ensures parent fills screen height */
  flex-direction: column;
}

.splat {
    display: flex;
    flex-grow: 1; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bounce-text {
  animation: bounce 0.6s infinite ease-in-out;
}
.bounce-text :nth-child(1) {
  animation-delay: 0s;
}
.bounce-text :nth-child(2) {
  animation-delay: 0.1s;
}
.bounce-text :nth-child(3) {
  animation-delay: 0.2s;
}
.bounce-text :nth-child(4) {
  animation-delay: 0.3s;
}
.bounce-text :nth-child(5) {
  animation-delay: 0.4s;
}
.bounce-text :nth-child(6) {
  animation-delay: 0.5s;
}
.bounce-text :nth-child(7) {
  animation-delay: 0.8s;
}
.bounce-text :nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}
