:root{
    --porcelaine: #F4E9E4;
    --terra: #DC9167;
    --noisette: #A85220;
    --mousse: #324F49;
    --saphir: #8ABBB3;
    --petrole: #282B2B;
}

body{
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--porcelaine);
}

header{
    width: 100%;
    height: 96px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

main{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    padding: 12px;
    margin: 4px;
    border-radius: 4px;
    background-color: var(--mousse);
    display: flex;
    flex-direction: raw;
    align-items: center;
    justify-content: center;
}

ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
}

li a{
    padding: 8px;
    border-radius: 4px;
    background-color: var(--terra);
    text-decoration: none;
}

li a:hover{
    padding: 8px;
    border-radius: 4px;
    background-color: var(--saphir);
    text-decoration: none;
}

section{
    background-color: var(--terra);
    border-radius: 4px;
    padding: 12px;
    display: flex;
    flex-direction: row;
}

footer{
    width: 100%;
    display: flex;
    flex-direction: row;
}