* {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
    overflow-y: auto;
}


@keyframes animateTitle {
    0% {
        transform: translateZ(700px) translateY(-300px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {

        color: rgba(33, 104, 31, 1);
    }

    80% {

        color: rgba(33, 104, 31, .4);
    }

    100% {
        color: rgba(33, 104, 31, 1);
    }
}



.info {
    animation: animateTitle 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background-color: rgb(231, 236, 240);
    margin: auto;
    width: 40%;
    padding: 5px;
    text-align: center;
    display: block;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.block {
    display: block;
}

.serverName {
    color: rgb(19, 113, 190);
}

.version {
    color: rgb(138, 9, 9);
}

.status {
    animation: pulse 1s ease-in-out infinite;
}

.button {
    border-radius: 2%;
    transition: background .3s, transform .3s, box-shadow .3s;
    will-change: transform;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition-duration: 0.4s;
    border: 0px;
    background-color: rgb(13, 202, 13);
    padding: 5px;
    z-index: 100;
    font-size: larger;
}

.button:hover {
    background-color: #4CAF50;
    /* Green */
    color: white;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -2px, 0);
}

.buttonClose {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 20px;
    transition: background .3s, transform .3s, box-shadow .3s;
    will-change: transform;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition-duration: 0.4s;
    border: 0px;
    background-color: rgb(221, 41, 50);
    padding: 5px;
}

.buttonClose:hover {
    background-color: rgb(214, 24, 34);
    color: white;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -2px, 0);
}

@keyframes animateLanding {
    0% {
        transform: translateY(600px) rotateX(30deg) scale(0);
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        transform: translateY(0) rotateX(0) scale(1);
        transform-origin: 50% -1400px;
        opacity: 1;
    }
}

.logoImg {
    animation: animateLanding 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 45%;
    margin-top: .5rem;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mainBackground {
    background: linear-gradient(45deg, #659F64, rgb(33, 104, 31), rgb(57, 228, 51));
    background-size: 400% 400%;
    animation: gradient 10s linear infinite;
    height: 100%;
    padding-top: .5rem;
}


@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

.w3-modal {
    z-index: 3;
    padding-top: 1rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;

}

.w3-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    width: 90%;
    height: 90%;
    overflow: hidden;
}

iframe {
    margin-top: 30px;
    height: 95%;
    width: 100%;
    position: absolute;
}

.backgroundSquaresAnimation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.backgroundSquaresAnimation li {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #078421;
    color: transparent;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: cube 8s ease-in forwards infinite;
}

.backgroundSquaresAnimation li:nth-child(0) {
    animation-delay: 1s;
    left: 98vw;
    top: 42vh;
    border-color: #078421;
}

.backgroundSquaresAnimation li:nth-child(1) {
    animation-delay: 2s;
    left: 67vw;
    top: 16vh;
}

.backgroundSquaresAnimation li:nth-child(2) {
    animation-delay: 2s;
    left: 81vw;
    top: 60vh;
    border-color: #078421;
}

.backgroundSquaresAnimation li:nth-child(3) {
    animation-delay: 2s;
    left: 51vw;
    top: 85vh;
}

.backgroundSquaresAnimation li:nth-child(4) {
    animation-delay: 8s;
    left: 8vw;
    top: 9vh;
}

.backgroundSquaresAnimation li:nth-child(5) {
    animation-delay: 10s;
    left: 76vw;
    top: 94vh;
    border-color: #078421;
}

.backgroundSquaresAnimation li:nth-child(6) {
    animation-delay: 12s;
    left: 63vw;
    top: 32vh;
    border-color: #078421;
}

.backgroundSquaresAnimation li:nth-child(7) {
    animation-delay: 14s;
    left: 70vw;
    top: 80vh;
}

.backgroundSquaresAnimation li:nth-child(8) {
    animation-delay: 16s;
    left: 18vw;
    top: 99vh;
}

.backgroundSquaresAnimation li:nth-child(9) {
    animation-delay: 18s;
    left: 2vw;
    top: 29vh;
    border-color: #078421;
}

.backgroundSquaresAnimation li:nth-child(10) {
    animation-delay: 20s;
    left: 57vw;
    top: 71vh;
    border-color: #078421;
}