.wave-text {
    font-size: 2.5em;
    font-weight: bold;
    margin: 20px 0;
}

.wave-text .letter {
    display: inline-block;
    animation: sine-wave 2s linear infinite;
}

.wave-text .letter:nth-child(1) {
    animation-delay: 0s;
}

.wave-text .letter:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-text .letter:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-text .letter:nth-child(4) {
    animation-delay: 0.3s;
}

.wave-text .letter:nth-child(5) {
    animation-delay: 0.4s;
}

.wave-text .letter:nth-child(6) {
    animation-delay: 0.5s;
}

.wave-text .letter:nth-child(7) {
    animation-delay: 0.6s;
}

.wave-text .letter:nth-child(8) {
    animation-delay: 0.7s;
}

.wave-text .letter:nth-child(9) {
    animation-delay: 0.8s;
}

.wave-text .letter:nth-child(10) {
    animation-delay: 0.9s;
}

.wave-text .letter:nth-child(11) {
    animation-delay: 1s;
}

.wave-text .letter:nth-child(12) {
    animation-delay: 1.1s;
}

.wave-text .letter:nth-child(13) {
    animation-delay: 1.2s;
}

.wave-text .letter:nth-child(14) {
    animation-delay: 1.3s;
}

.wave-text .letter:nth-child(15) {
    animation-delay: 1.4s;
}

.wave-text .letter:nth-child(16) {
    animation-delay: 1.5s;
}

.wave-text .letter:nth-child(17) {
    animation-delay: 1.6s;
}

.wave-text .letter:nth-child(18) {
    animation-delay: 1.7s;
}

.wave-text .letter:nth-child(19) {
    animation-delay: 1.8s;
}

.wave-text .letter:nth-child(20) {
    animation-delay: 1.9s;
}

@keyframes sine-wave {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}


