@media (min-width: 768px) {
body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden!important;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 150s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1100% 1100% ;
    position: fixed;
    width: 100%;
    height:1000px;
    animation: wave 50s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.98;
    top: -1em!important;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    background: rgb(255 255 255 / 25%);
    border-radius: 1100% 1100% ;
    position: fixed;
    width: 100%;
    height:1000px;
    animation: wave 80s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.98;
    top: 0em!important;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(3) {
    background: rgb(255 255 255 / 25%);
    border-radius: 1100% 1100% ;
    position: fixed;
    width: 100%;
    height:1000px;
    animation: wave 110s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.98;
    top: 1em!important;
    left: 0;
    z-index: -1;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    20% {
        transform: translateX(25%);
    }

    35% {
        transform: translateX(50%);
    }

    50% {
        transform: translateX(25%);
    }

    65% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-1);
    }

}
}


@media (max-width: 767px) {
body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden!important;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 150s ease infinite;
    background-size: 200% 200%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}


.wave {
    background: rgb(255 255 255 / 15%);
    border-radius: 100px 100px ;
    position: fixed;
    width: 150px;
    height: 150px;
    animation: wave 60s -23s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.98;
    top: 0em!important;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    top: 0em;
    animation: wave 68s linear reverse infinite;
    opacity: 0.98;
}

.wave:nth-of-type(3) {
    top: 0em;
    animation: wave 70s -30s reverse infinite;
    opacity: 0.98;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    20% {
        transform: translateX(25%);
    }

    35% {
        transform: translateX(50%);
    }

    50% {
        transform: translateX(25%);
    }

    65% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-1);
    }

}

}



