body{
    margin: 0;
}

header {
    display:flex;
    justify-content:space-between;
    background-color: #AC7F5E ;
    color: white;
}

header > h1{
    align-self: center;
    font-size: 50px;
}

#navbar{
    display: flex;
    background-color: white;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px;
    border-bottom: #D9D9D9 1px solid;
}

#navbar > a{
    font-size: x-large;
    text-decoration: none;
    color: black;
}

#logo, #logo > img {
    width: 150px;

}

.rubrique{
    margin : 20px;
    width: 25%;
    display: flex;
    flex-direction: column;
    color: white;
}

#links > a > img{
    width: 40px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #AC7F5E ;
    min-height: 250px;
}

footer > div > a{
    color: white;
    text-decoration: none;
}