html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: radial-gradient(ellipse at center, rgba(255,254,234,1) 0%, rgba(255,254,234,1) 35%, #143854 150%);
    overflow-y: auto;
    font-family: sans-serif;
}

.wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    z-index: -1;
}

.waves {
    will-change: transform;
    position: relative;
    width: 200%;
    height: 100%;
    transform: translate3d(0, 0, 0);
}

.parallax > use {
    animation: move-forever 25s linear infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    50% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
