.major_text {
    background: linear-gradient(171deg, rgba(255,255,255,1) 56%, rgba(125,125,125,1) 83%, rgba(0,0,0,1) 100%);
    background-clip: text;
    color: transparent;
    text-shadow: 8px 2px 4px rgba(0, 0, 0, 0.5);
}

.text_wave {
    font-size: 8rem;
}

.text_wave:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #1ac6ff;
}

.text_wave:nth-child(2) {
    color: #1ac6ff;
    animation: text_wave 4s ease-in-out infinite;
}

@keyframes text_wave {
    0%, 100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}