html {
    font-family: Lato, sans-serif;
    user-select: none;
    overflow: hidden;
}

.container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.logo {
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 10em;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.mid-text {
    position: absolute;
    z-index: 99;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
    animation: fadeIn 2s ease-in;
}

.mid-text h2 {
    font-size: 5em;
    font-weight: 300;
}

.next {
    color: #b3d4fc;
}

.bale {
    color: #ffffff;
}

.tagline {
    font-size: 1.8em;
    font-weight: 300;
    color: #ffffff80;
    white-space: nowrap;
    position: absolute;
    z-index: 99;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: RGB(0, 200, 197);
}

.line-1 {
    z-index: 15;
    opacity: 0.5;
}

.line-2 {
    z-index: 10;
    opacity: 0.7;
}

.line-3 {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
    animation: fadeIn 2s ease-in;
}

.wave1 {
    -webkit-background-size: 50% 10vh;
    background-size: 50% 10vh;
}

.wave2 {
    -webkit-background-size: 50% 12vh;
    background-size: 50% 12vh;
    animation: animate_wave 12s linear infinite;
}

.wave3 {
    -webkit-background-size: 50% 10vh;
    background-size: 50% 10vh;
    animation: animate_wave 18s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animate_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.5);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }

}