/* définit le css de la page */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


main {
  flex: 1;
}

footer {
  margin-top: auto;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0px;
    background-color: #ffffff;
    font-family: poppins;
}

h3 {
    margin: 5%;
    margin-bottom: 0px;
    text-align: justify;
  }
/*  */

/* COULEURS */
.couleur-fond1 {
    background-color: #ecccdc;
    /* background-color: #EBACA2; couleur thème 2 */
    /* background-color: #8E8CCA;couleur thème 1 */
}

.couleur-fond2 {
    background-color: #D0E7DA;
    /* background-color: #BED3C3; couleur thème 2 */
    /* background-color: #ffe5ab;couleur thème 1 */
}

.couleur-fond3 {
    background-color: #90B7CF;
    /* background-color: #A9CBB7;couleur thème 2 */
    /* background-color: #ffe5ab;couleur thème 1 */
}

.couleur-fond4 {
    background-color: #90B7CF;
    /* background-color: #A9CBB7;couleur thème 2 */
    /* background-color: #ffe5ab;couleur thème 1 */
}

.couleur-fond5 {
    background-color: #ffe5ab;
    /* background-color: #ffe5ab;couleur thème  */
    /* background-color: #ffe5ab;couleur thème 1 */
}

.couleur-police1 {
    color: #FFA570;
}
.couleur-police2 {
    color: #61745e;
}
/*  */

/* Polices générales */
.titre-de-section {
    font-size: 25px;
}

.titre-general-de-page {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.texte-de-section {
    font-size: 24px;
    font-weight: 200;
}

/*  */


/* POUR MAILS */
.mail {
    text-decoration: none;
    color: black;
}

.mail:hover {
    color: #61745e;
    text-decoration: underline;
}

/*  */

/* POUR ECRAN DE TEL */
@media screen and (max-width: 1200px) {
    .titre-de-section {
        font-size: 18px;
    }

    .texte-de-section {
        font-size: 15px;
        margin: 5%;
    }
    .titre-general-de-page {
        font-size: 20px;
    }
}

@media screen and (max-width: 850px) {
    .titre-general-de-page {
        font-size: 18px;
    }
    .titre-de-section {
        font-size: 16px;
    }

    .texte-de-section {
        font-size: 13px;
        margin: 5%;
    }
}