html{
    font-size: 62.5%;
}
body
{
    width: 100%;
    margin: 0;
    background: linear-gradient(135deg, rgba(0,231,255,1) 0%, rgba(243,243,243,1) 100%);
    height: 100%;
    min-height: 100vh;
}

#pag
{
}

h1
{
    margin: 0;
}

.central
{
    width: 74.4rem;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

header
{
    height: 25rem;
}

nav
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 img
{
    height: 8rem;
    padding-top: 9rem;
}

main#cover
{
    width: 100%;   
}

main#cover .central
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cover a
{
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    font-size: 2.5rem;
    font-family: Montserrat;
    font-weight: 600;
    color: #09252F;
    display: flex;
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s linear;
    border: 0.2rem solid #09252F;
    border-radius: 1.5rem;
}

#cover a:last-child
{
    margin-bottom: 5rem;
}

#cover a:hover
{
    background-color: #FFFFFF;
    cursor: pointer;
}

#cover a svg
{
    height: 2.5rem;
    max-width: 2.5rem;
    margin-right: 1.5rem;
}
#cover a svg *{
    fill: #09252F;
}

@media screen and (max-width: 800px){
    .central{
        width: 90%;
    }
    #cover a{
        width: 100%;
    }
    h1 img{
        height: 6rem;
    }
    header{
        height: 20rem;
    }
}
@media screen and (max-width: 500px){
    h1 img{
        height: 4rem;
    }
    #cover a{
        font-size: 1.8rem;
    }
    main#cover{
        width: 95%;
        margin: auto;
    }
}