/*** TOUTES LES MISES EN FORME POUR LA DERNIERE SECTION, GENRE DE FOOTER AVEC CREDITS ET COMPATIBILITES NAVIGATEURS ***/

section#sectionDernier
{
    display: flex;
    min-height: 50px;
}
section#sectionDernier > div
{
    display: flex;
    flex-direction: column;
    width: 100%;
}

p#texte_copy
{
    margin: auto 20px;

}




/*** POUR LE COTE RESPONSIVE ***/
@media (max-width: 1024px) {

    section#sectionDernier
    {
        flex-direction: column;
    }
    p#texte_copy
    {
        margin: 20px auto
    }


}



