/*------------------*/
/*----- FOOTER -----*/
/*------------------*/

.container_footer{
    height: 5vh;
    width: 100vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color: rgb(17, 51, 102);
    color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer p{
    font-size: 1.5vh;
}

.area{
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container_footer a{
    color: whitesmoke;
    margin-top: 3px;
}

.container_footer a:hover{
    transition: calc(0.5s);
    opacity: calc(70%);
}

.container_footer a:not(:hover){
    transition: calc(0.5s);
}