* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

#hero {
    background-color: rgb(255, 187, 0);
}

#hero .wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
    inset: 0;
}

#hero .wave span {
    content: "";
    position: absolute;
    width: 300vh;
    height: 300vh;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #fff;
}

@media screen and (max-width: 768px) {
    #hero .wave span {
        width: 200vh;
        height: 200vh;
    }

}

#hero .wave span:nth-child(1) {
    border-radius: 45%;
    background: rgb(255, 255, 255, 1);
    animation: animate 30s linear infinite;
}

#hero .wave span:nth-child(2) {
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 35s linear infinite;
}

#hero .wave span:nth-child(3) {
    border-radius: 42.5%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 40s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* #hero {
    position: relative;
    background: url('./asset/img/1.jpg') no-repeat center center/cover;
    z-index: 0;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
} */