﻿* {
    padding: 0;
    margin: 0;
}

.Screen {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    overflow: hidden;
}

#particles-js {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 200px;
    top: 0;
    overflow: hidden;
    /*background-image: linear-gradient(to top, #5577FF 0%, #2244FF 100%);*/
    background-image: linear-gradient(to top, #0099FF 0%, #005188 100%);
    opacity: 0.75;
    z-index: 20;
}

.Page {
    position: absolute;
    width: 100%;
    height: 75vh;
    min-height: 200px;
    top: 0;
    overflow: hidden;
    /* background-image: linear-gradient(to top, #5577FF 0%, #2244FF 100%);*/
    background-image: linear-gradient(to top, #0099FF 0%, #005188 100%);
}

.top {
    opacity: 0.5;
    z-index: 15;
}

.mid {
    opacity: 0.75;
    z-index: 10;
}

.bottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat !important;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
    animation: wave 30s linear infinite;
}

.waveMid {
    background-size: 50% 120px;
    animation: wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
    animation: wave 15s linear infinite;
}

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

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

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