#contact{
background-color: #FEEEE5;
padding: 20px;

display: flex;
justify-content: center;
align-items: flex-start;

}

#adresse{
    display: flex;
}

#adresse ul{
    padding: 0;
    list-style-type: none;

}

#adresse ul li{
    display: flex;
    align-items: center;
    gap : 20px;
}


#adresse ul li p{
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    color: #1F3052;;
}

h3{
    color: #1F3052;
    font-family: "linotype-didot-headline", serif;
    font-size: 24px ;
}

#adresse li img{
    width: 49px;
}

#formulaire{
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    margin-top: 20px;
    padding: 10px;
    background-color: #CD6A6B;
    color: #FCDDCB;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #b45b5c;
}