
/*footer*/
footer{
    border: 1px solid gray;
    width: 100%;
    background-color: white;
}
#contact{
    display: flex;
    padding: 5% 10% 5% 10%;
    gap: 10px;
}
#contact div
{
    flex: 1;
}
#dnsLeFooter
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.entreeContact
{
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
#boutonEnvoyerMail
{
    padding: 3% 7% 3% 7%;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
    transition: background 0.3s ease;
}
#boutonEnvoyerMail:hover
{
    background-color: #4f626d;
}
@media only screen and (max-width: 768px)
{
    #contact
    {
        flex-direction: column;
        justify-content: center;
    }
}