body {
    margin: 0px;
    padding: 0px;
}


header{

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: bisque;
    border: 2px solid rgb(0, 0, 0);
    
    
    
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border: 2px solid rgb(0, 0, 0);
}


#left {
    width: 30%;
    border: 2x solid rgb(0, 0, 0);
    padding-left: 10px;
}

#right {
    width: 60%;
    border: 2x solid rgb(0, 0, 0);
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border: 2px solid rgb(0, 0, 0);
}


footer img {
    width: 50px;
}

.contacter {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;    
    gap: 10px; 
}

.contacter img { 
    width: 50px;           
    height: auto;
}

.contacter a {
    text-decoration: none;
    color: inherit;         
    font-weight: 500;
}

