html, body {
  height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  background-color: white;
  color: black;
  font-family: "Jersey 15", sans-serif;
}

.message {
  text-align: center;
  font-size: 2rem; 
}

a {
  color: #5e548e; 
  text-transform: uppercase; 
}

a:hover {
  color: #231942
}


.wave-text span {
    display: inline-block;
    font-size: 4rem;
    animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
    animation-delay: 1s;
}
.wave-text span:nth-child(7) {
    animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
    animation-delay: 1.4s;
}
.wave-text span:nth-child(9) {
    animation-delay: 1.6s;
}
.wave-text span:nth-child(10) {
    animation-delay: 1.8s;
}
.wave-text span:nth-child(11) {
    animation-delay: 2s;
}
.wave-text span:nth-child(12) {
    animation-delay: 2.2s;
}
.wave-text span:nth-child(13) {
    animation-delay: 2.4s;
}
.wave-text span:nth-child(14) {
    animation-delay: 2.6s;
}
.wave-text span:nth-child(15) {
    animation-delay: 2.8s;
}
.wave-text span:nth-child(16) {
    animation-delay: 3s; 
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

