body{
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    animation: zoom-up 0.5s;
}
.wave{
    font-size: 1.5em;
    font-family: "Comic Sans MS", "Comic Sans", cursive;  
}
.wave .char{
    animation: anim 1s ease-in-out infinite;
    transform: translateX(-0.35em);
    animation-delay: calc(0.1s * var(--char-index));
}
@keyframes anim{
    0%, 100%{
        transform: translateX(-0.35em) rotate(0deg);
    }
    50%{
        transform: translateY(0.35em) rotate(-15deg);
    }
}

@keyframes zoom-up{
    0%{
        opcaity: 0;
        transform: scale(0.9);
    }
    100%{
        opcaity: 1;
        transform: scale(1);
    }
}