* {
    margin: 0;
    padding: 0;
    color: white;
    background: #262625;
}

figure {
    font-family: poppins, cursive;
    margin-left: 1em;
}

audio {
    width: 7em;
    height: 3em;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #262625;

}

section #story {
    margin: 10em;
}

section img {
    width: 100%;
}


section .wave {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(images/wave.png);
    background-size: 1000px 100px;
}

section .wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000px;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

section .wave.wave1 {
    animation: animate2 15s linear infinite;
    z-index: 999px;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

section .wave.wave3 {
    animation: animate 30s linear infinite;
    z-index: 998px;
    opacity: 0.2;
    animation-delay: -5s;
    bottom: 10px;
}

section .wave.wave4 {
    animation: animate2 2s linear infinite;
    z-index: 997px;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1000px;
    }
}
