body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #fff;
    color: #0E4C92;
    font-family: 'Arial', sans-serif;
}

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

.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;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.space {
    margin: 0 10px;
}