a {
    color: white;
    text-align: center;
    text-decoration: none;
}

li {
    text-decoration: none;
}


footer {
    margin-top: 7rem;
    background-color: black;
    position: relative;
}

#footer-logo {
    position: absolute;
    top: 7.5px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#div-contact {
    margin: 7rem 9rem;
    text-decoration: none;

}

#div-contact ul {
    list-style: none;
    padding-left: 0;
}


#div-contact li a {
    font-size: 1.2em;
    margin-top: 0.3em;
    transition: 0.3s ease-in-out;
}

#div-contact li a:hover {
    /* font-size: 1.3em; */
    color: #c62523;
    transition: 0.6s ease-in-out;
}

.title {
    text-transform: uppercase;
    color: white;
    font-size: 2em;
}

#div-link {
    margin: 7rem 9rem;
}

.fa-brands {
    margin-top: 0.3em;
    width: 1.5em;
    font-size: 2rem;
    transition: 0.3s ease-in-out;
}

.fa-brands:hover {
    /* font-size: 2.1rem; */
    color: #c62523;
    transition: 0.6s ease-in-out;
}



/* Ecran large */

@media(max-width: 1055px) {
    .footer-container {
        justify-content: center;

    }

    #div-contact {
        margin: 7rem 0 1rem;
        width: 100%;
        text-align: center;
    }

    #div-link {
        width: 100%;
        text-align: center;
        margin: 0 0 2rem;
    }

    #footer-logo img {
        width: 89%;
    }

    #footer-logo {
        top: 4px;
        text-align: center;
    }

}

/* Petit écran */
@media(max-width: 768px) {

    #div-contact {
        margin: 5rem 0 1rem;
        width: 100%;
        text-align: center;
    }

    #div-link {
        width: 100%;
        text-align: center;
        margin: 0 0 2rem;
    }

    #footer-logo img {
        width: 83%;
    }

    #footer-logo {
        top: 2px;
        text-align: center;
    }

}

/* Smartphone*/
@media(max-width: 600px) {

    #footer-logo img {
        width: 15em;
    }

    #div-contact {
        margin: 5rem 0 1rem;
        font-size: smaller;
    }

    #div-link {
        margin: 0 0 2rem;
        font-size: smaller;
    }

    #footer-logo {
        top: 2px;
    }
}