
/*---General---*/
html{
    height: 100vh;
    background-color: var(--second-color);
}

body{
    width: 100%;
    height: 100%;
    padding: var(--border-padding);

    background-color: var(--main-color);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/*---header---*/
header{
    width: 100%;
}
header nav{
    width: 100%;

    /* border: 1px dashed blue; */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

/* header nav div{
    margin: 4vh;
} */
header nav .logo a{
    font-weight: 200;
}

/*---main---*/
main{
    width: 100%;
    transform: translateY(-25%);

    /* border: 1px dashed blue; */
}

main .title{
    margin-left: 8%;
}
main .title h2{
    font-size: 2rem;
    font-weight: 200;
}
main .title h1{
    font-size: 3rem;
    font-weight: 800;
}

/*---footer---*/
footer{
    width: 100%;

    /* border: 1px dashed blue; */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

/* footer div{
    margin: 4vh;
} */

footer .links a{
    display: inline-block;
    width: 5vh;
    height: 5vh;
/*!!!*/margin-bottom: -0.5vh;
    margin-right: 2vh;

    background-size: cover;
}
