html,
body {
    margin: 0;
    height: 100%;
    background: linear-gradient(135deg, #4B0082, #5a370f);
    font-family: Arial, sans-serif;
    color: #ccc;
    overflow: hidden;
    position: relative;
    caret-color: transparent;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 361px;
    height: 351px;
    z-index: 100;
    background-image: url(../scurrik-logo.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    /* opacity: 0.7; */
    background-blend-mode: multiply;
    mix-blend-mode: soft-light;
}

.waves-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 0;
    z-index: 1;
}

.waves-container svg {
    position: absolute;
    left: 0;
    width: 3840px;
    min-width: 3840px;
    bottom: 0;
    will-change: transform;
}

.wave-600 {
    height: 600px;
    z-index: 1;
    animation: waveMove600 148s linear infinite;
}

.wave-400 {
    height: 400px;
    bottom: 100px;
    z-index: 2;
    animation: waveMove400 164s linear infinite reverse;
}

.wave-200 {
    height: 200px;
    bottom: 300px;
    z-index: 3;
    animation: waveMove200 180s linear infinite;
}

@keyframes waveMove600 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1920px);
    }
}

@keyframes waveMove400 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1920px);
    }
}

@keyframes waveMove200 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1920px);
    }
}

footer {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #aaa;
    user-select: none;
    z-index: 10;
    background: transparent;
    padding: 4px 8px;
    pointer-events: none;
}