*,
::before,
::after {
    /*sélectionne tout et les pseudo éléments*/
    box-sizing: border-box;
    /* Ne modifie pas la taille de l'élément si on ajoute une bordure ou du remplissage. Permet de respecter facilement des dimensions */
    margin: 0;
    /* Supprime les margin par défaut  */
    padding: 0;
    /* Supprime les padding par défaut */
}

/* ############# Eléments commun  ################################################################### */
body {
    width: 100%;
    height: 100%;
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entete {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#logoEnt {
    width: 30rem;
    height: auto;
}

.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#logoGd {
    width: 11rem;
    height: auto;
}

#logoInsta {
    width: 4rem;
    height: auto;
}


section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 90%;
}

h1 {
    font-family: "Mosk";
    font-style: bold;
    font-weight: 600;
    font-size: 2.5rem;
}

h2 {
    font-family: "Mosk";
    font-style: bold;
    font-weight: 600;
    font-size: 1.8rem;
}

.titreh1 {
    font-family: "Mosk";
    font-style: bold;
    font-weight: 600;
    background-color: rgb(189, 143, 143);
    font-size: 2.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 0rem 1rem 0rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


.titreh2 {
    font-family: "Mosk";
    font-style: bold;
    font-weight: 600;
    background-color: rgb(189, 143, 143);
    font-size: 2rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 0rem 1rem 0rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

p {
    font-family: "Mosk";
    font-style: normal;
    font-weight: 400;
    text-align: left;
    line-height: 2.5rem;
    font-size: 1.6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cadre1 {
    border: 1px solid rgb(189, 143, 143);
    border-radius: 3px;
    box-shadow: rgba(189, 143, 143, 0.35) 5px 5px 0px 0px;
}


/* ############# Pour les écrans larges  ################################################################### */
@media screen and (min-width: 1025px) {}



/* ############# Pour les écrans moyens  ################################################################### */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .social p {
        font-size: 1.5rem;
    }

    #logoEnt {
        width: 15rem;
        margin: 0;
    }

    #logoGd {
        width: 6rem;
    }

    #logoInsta {
        width: 2rem;
    }

    p {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

}



/* ############# Pour les petits écrans mobile ################################################################### */
@media screen and (max-width: 768px) {

    .banniere h1 {
        font-size: 1.5rem;
    }

    banniere h2 {
        font-size: 1rem;
    }

    .social p {
        font-size: 1rem;
    }

    #logoEnt {
        width: 8rem;
    }

    #logoGd {
        width: 4rem;
    }

    #logoInsta {
        width: 2rem;
    }

    .titreh1 {
        font-size: 1.1rem;
    }

    .titreh2 {
        font-size: 0.9rem;
    }

    p {
        line-height: 1.5rem;
        font-size: 1rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

}