nav {
    min-width: 300px;
    text-align: center;

    a{
        color: black;
        text-decoration: none;
        display: block;
        padding: 20px;
        font-size: large;
        img{
            width: 150px;
            height: auto;
        }
    }
    a:hover{
        color:coral;
        text-decoration: none;

    }
}

#contact-div0 {
    background-image: url('../assets/maison-eclaire.webp');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 500px;
    padding: 50px;
    background-position-x: center;

    h1 {
        text-align: center;
        color: white;
        line-height: 400px;
        background-color: rgb(50, 50, 50, 0.3);

    }
}


#contact-div1 {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 30px;
}

#coordonnee {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    margin: 20px;
    box-shadow: lightgray 4px 4px 20px;
    padding: 20px 60px;
    width: 300px;
    /*  transition: transform .5s ease; */



    div {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;

        svg {
            width: 22px !important;
            height: 22px !important;
            object-fit: cover;
            margin-bottom: 15px;

        }

        a {
            color: rgb(26, 26, 26);
        }

    }
}


#contacter-nous {
    width: 600px;
    box-shadow: lightgray 4px 4px 20px;
    padding: 20px 60px;
    transition: transform .5s ease;

    h1 {
        text-align: center;
        font-weight: lighter;
        margin-bottom: 25px;
    }

    .div-buttn-submit {
        display: block;
        margin: 30px 0 20px 0;
        text-align: center;
    }

    label {
        display: block;
        width: 100%;
        margin: 4px 0;
    }

    input {
        margin: 2px 0;
    }


    textarea {
        width: 100%;
        outline: none;
        height: 130px;
    }

    #p-sent-success {
        color: green;
        margin: 1rem 0;
        padding: 1rem;
        border: 0.3px solid #ddf5dd;
        box-shadow: 2px 2px 2px 2px #d1fac8;
        background-color: #d1fac8;
    }

    #p-sent-error {
        color: #fefefe;
        margin: 1rem 0;
        padding: 1rem;
        border: 0.3px solid #f13819;
        box-shadow: 2px 2px 2px 2px #f52727;
        background-color: #ff0404;
    }

}

@media(max-width:500px) {
    #contact-div1 {
        margin: 5px;

        #coordonnee,
        #contacter-nous {
            padding: 20px;
            margin: 5px;
            min-width: 90vw;
            max-width: 90vw;
            /* input, textarea {
        border-bottom: 1.5px solid rgb(169, 169, 169);

    } */
        }
    }

    #coordonnee:hover,
    #contacter-nous:hover {
        transform: scale(1.0);
    }

    textarea {
        height: 200px;

    }
}