/* * * * * * * * * * * * * * * * * * * * *
    * HEADER
* * * * * * * * * * * * * * * * * * * * */

header{
    color: var(--blanc);
    background-color: var(--color-principal);
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

header img{
    height: 40px;
}

/* * * * * * * * * * * * * * * * * * * * *
    * FOOTER
* * * * * * * * * * * * * * * * * * * * */

footer{    
    padding: 12px 0;
    background-color: var(--color-principal);
    position: fixed;
    bottom: 0;
    width: 100%;
}

ul{
    padding: 0 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    justify-content: space-between;
}

li{
    width: 73px;
    border-radius: 8px;
    padding: 6px 0;
}

#active{
    background-color: var(--color-secundari);
}

footer a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blanc);
    font-size: 14px;
}