body{
    margin: 0px;
    height: 100vh;
    padding: 0px;
    overflow: hidden;
    background-image: linear-gradient(to bottom right, teal, #1ca088);
    font-family: Funnel Display;
}

.cont {
    background-color: #ffffff88;
    width: 80%; 
    margin: auto;
    margin-top: 10%;
    padding: 1%;
    border-radius: 20px;
    transition: 0.3s;
    height: 85vh;
    text-align: center;
}

.cont p, h2 {
    padding: 2%;
    text-align: center;
    text-decoration: none;
}

h2 {
    font-size: 150%;
}

.socials{
    text-align: center;
    font-size: 200%;
    margin-bottom: 5%;
}

.socials a {
    color: white;
    text-shadow: 2px 2px 2px teal;
    margin-left: 2%;
    margin-right: 2%;
    transition: 0.2s;
}

.buttons {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons a{
    color: white;
    margin-bottom: 2%;
    text-decoration: none;
    background-color: teal;
    padding: 2%;
    transition: 0.2s;
}

.site {
    background-color: white!important;
    color: teal!important;
    font-weight: bold;
}

/*

 ________________
/                \
|   Animations   |
\________________/


*/

.cont span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    color: teal;
    font-size: larger;
    text-shadow:
    1px 1px 0 #ffffff66,
    -1px 1px 0 #ffffff66,
    -1px -1px 0 #ffffff66,
    1px -1px 0 #ffffff66;
}

.cont span:nth-child(1) {
    animation-delay: 0s;
}
.cont span:nth-child(2) {
    animation-delay: 0.1s;
}
.cont span:nth-child(3) {
    animation-delay: 0.2s;
}
.cont span:nth-child(4) {
    animation-delay: 0.3s;
}
.cont span:nth-child(5) {
    animation-delay: 0.4s;
}
.cont span:nth-child(6) {
    animation-delay: 0.5s;
}
.cont span:nth-child(7) {
    animation-delay: 0.6s;
}
.cont span:nth-child(8) {
    animation-delay: 0.7s;
}
.cont span:nth-child(9) {
    animation-delay: 0.8s;
}
.cont span:nth-child(10) {
    animation-delay: 0.9s;
}
.cont span:nth-child(11) {
    animation-delay: 1s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width:800px){
    .cont {
        background-color: #ffffff66;
        margin-top: 2%;
        width: 60%; 
    }

    .cont:hover {
        background-color: #ffffff88;
        box-shadow: 2px 2px 10px #ffffff66;
    }

    .socials a:hover {
        color: teal;
        text-shadow: none;
    }

    .buttons a:hover {
        background-color: white;
        color: teal;
    }

    .site:hover{
        background-color: teal!important;
        color: white!important;
    }

    h2 {
        font-size: 200%;
    }
}