.wave-text {
    font-weight: bold;
    position: relative;
    color: transparent;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(104, 109, 197, 0.82) 10%,
            rgba(214, 97, 97, 0.82) 20%,
            rgba(48, 56, 154, 0.82) 30%,
            rgba(88, 169, 202, 0.82) 40%,
            rgba(255, 255, 255, 0.82) 45%,
            rgba(255, 255, 255, 0.82) 55%,
            rgba(88, 169, 202, 0.82) 60%,
            rgba(37, 89, 126, 0.82) 70%,
            rgba(214, 97, 97, 0.82) 80%,
            rgba(104, 109, 197, 0.82) 90%,
            rgba(251, 251, 251, 0.82) 100%
    );
    background-size: 200% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: wave-through-text 22s infinite ease-in-out alternate;
}

@keyframes wave-through-text {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}