.page-titre{
    align-items: center;
    margin-top: 9em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2.5em;
}
.trait-horizontal {
    height: 0.125em;
    width: 20em;
    background-color: var(--text-gris);
    margin-bottom: 0.5em;
}
.page-titre h3{
    text-align: center;
    color: var(--text-gris);
}

#contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

article > iframe{
    border-radius: 55px;
    border: 3px solid var(--btn) !important;
    box-shadow: 2px 2px 10px 0 var(--ombre-noir-blanc), 10px 10px 15px 0 rgba(0, 0, 0, 0.74) inset !important;
}

#info-contact {
    background-color: var(--header);
    border-radius: 55px;
    border: 3px solid var(--btn);
    margin-bottom: 2em;
    padding: 1em;
    box-shadow: 2px 2px 10px 0 var(--ombre-noir-blanc)
}
#info-contact ul li{
    list-style: none;
}

main input {
    width: 100%;
    border-radius: 5px;
    border: none;
}

main textarea {
    margin-bottom: 1em;
    width: 100%;
    border-radius: 5px;
    border: none;
    resize: none;
}

main button {
    width: 100%;
    border-radius: 5px;
    background-color: var(--bg-base);
    border: var(--text-gris) solid 0.1em;
    color: var(--noir-blanc);
}

@media screen and (max-width: 600px) {
    .page-titre{
    margin-top: 3em;
    }

    #contact {
        padding: 0 2em;
    }

    #contact >article {
        margin-bottom: 5em;
    }

    article > iframe {
        max-width: 100%;
    }

    #info-contact {
        padding: 3em 2em;
    }
    a {
        color: #000000;
        text-decoration: none;
    }
    main form button {
        background-color: var(--bg-base);
        color: var(--noir-blanc);
        padding: 0.7em 0;
        width: 100%;
        border-radius: 10px;
    }
    main input {
        width: 100%;
    }
    main textarea {
        width: 100%;
        margin-bottom: 1em;
    }
    main .trait-horizontal {
        width: 13.5em;
    }
}