.contact {
    width: 100%;
    min-height: 420px;

    padding: 70px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #ffffff;
    color: #000000;
}


/* TITRE */

.contact-header {
    text-align: center;
}

.contact-header h2 {
    margin: 0 0 18px;

    font-size: 40px;
    font-weight: 400;
}

.contact-line {
    width: 165px;
    height: 7px;

    margin: 0 auto;

    background: #000000;
}


/* TEXTE */

.contact-text {
    margin-top: 48px;
    margin-bottom: 38px;

    font-size: 20px;
    font-weight: 400;
}


/* EMAIL */

.contact-email {
    padding: 12px 17px;

    background: #484848;
    color: #ffffff;

    border-radius: 13px;

    font-size: 16px;
    font-weight: 400;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-email:hover {
    background: #000000;
    transform: scale(0.97);
}