/**************/
/*** Global ***/
/**************/

body {
    background: #2b4491;
    max-width: 1000px;
    margin: 0 auto; /* Cette règle centre le contenu horizontalement en ajoutant une marge automatique sur les côtés gauche et droit. */
}

h1 {
    margin: 30px auto;
    max-width: 8em;
    text-align: center;
}

h2 {
    margin-top: 40px;
}

mark {
    background-color: transparent; /* Supprime la couleur de fond par défaut */
    color: inherit; /* Utilise la couleur de texte par défaut */
    font-weight: bold; /* Met le texte en gras */
}

.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}


/**************/
/*** header ***/
/**************/

/* header block */
header {
    margin: 0 2%;
    padding: 1px 2%;
    background: #b1beea;
}

/* title & nav */
.titre-menu {
    display: flex; /* Utilisez un conteneur flexible */
    align-items: center; /* Centrez les éléments verticalement dans le conteneur flexible */
}

/* nav menu button */
header .menu-button {
    margin: 0 20px; /* Ajustez les marges horizontales selon vos besoins */
}

header .menu-button:hover div {
    background-color: #000000;
}

header .menu-button div {
    width: 35px;
    height: 5px;
    background: #2b4491;
    margin: 6px 0;
}

/* nav button */
.bouton-container {
    display: block;
}

.bouton-ligne {
    display: flex;
    justify-content: space-between;
}

.bouton {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    margin: 5px;
    width: 100%;
    min-height: 30px;
    text-decoration: none;
    color: #000000;
    background-color: #b9ceea;
    border: 1px solid #060d1c;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer; /* Change le curseur en une main */
}

.bouton:hover {
    color: #000000;
    background-color: #9cb6e0;
    border: 1px solid #000000;
}

.bt-phon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 30px;
    text-decoration: none;
    color: #000000;
    background-color: #b9ceea;
    font-weight: bold;
    cursor: pointer; /* Change le curseur en une main */
}

.bt-t {
    border-top: 1px solid #060d1c;
}

.bt-phon:hover {
    color: #000000;
    background-color: #9cb6e0;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.go-top {
    max-width: 10%;
    max-height: 10%;
    position: fixed;
    bottom: 2%;
    right: 4%;
    cursor: pointer; /* Change le curseur en une main */
}

.go-top img {
    max-width: 100%; /* Ne pas dépasser la largeur de son conteneur */
    max-height: 100%; /* Ne pas dépasser la hauteur de son conteneur */
}

/**************/
/*** main   ***/
/**************/

/* main block */
main {
    margin: 0 2%;
    padding: 1px 2%;
    background: #b1beea;
}

/**************/
/*** footer ***/
/**************/

footer {
    margin: 0 2%;
    padding: 1px 2%;
    min-height: 40px;
    background: #b1beea;
}