@media (max-width: 768px) {

    /* Styles pour les écrans jusqu'à 768 pixels de large */
    .container {
        height: 110px;
        width: 70%;
    }
}

@media screen and (min-width: 80rem) {
    .container {
        margin: 1em 2em;
    }
}

@media print and (min-resolution: 300dpi) {}

.main {
    display: flex;
    flex-direction: column;
}

html {
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
}

.fill {
    height: -webkit-fill-available;
}


main {
    display: flex;
}


/** header **/

header,
.not-found-container {
    background-color: #927a7a56;
    backdrop-filter: blur(5px);
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}

header a {
    text-decoration: none;
}

header a div {
    display: flex;
    align-items: center;
}

#logo {
    width: 10rem;
    border-radius: 50%;
    background-blend-mode: color-burn;
    transform: scale(0.95);
}

header h1 {
    color: #003044;
    font-family: 'Ranchers', cursive;
    font-size: 3rem;
    margin-left: 14px;
}

/* help page css*/


div .help_title {
    justify-content: center;
    margin-left: 30%;
    margin-top: 10%;
    font-size: 2.5vw;
    font-weight: bold;
    text-decoration: underline;
    color: rgb(23, 88, 88);
    padding-bottom: 1.4em;
}

.container .row-container {
    display: inline;
    flex-direction: row;
    align-items: center;
    margin-bottom: 65px;
    margin-bottom: 50px;
    margin-left: 2%;
}


.row-container p,
.row-container a {
    font-size: 1.7vw;
    display: inline;
    margin: 0 30px 0 0;
}

.row-container a {
    color: blue;
    margin-left: 2%;
}

.row-container a:hover {
    color: #19075a;
}

article {
    margin-top: 10%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 40px;
    /* Ajoute de l'espace en bas de l'article */
    padding: 24px;
    border: 5px solid #080202;
    /* Ajoute une bordure */
    border-radius: 8px;
    /* Ajoute des coins arrondis */
    background-color: #1bb190;
    /* Ajoute une couleur de fond */
    display: flex;
    flex-direction: column;
}

h3 {
    font-size: 1.8vw;
    /* Ajuste la taille de la police pour le titre */
    margin-bottom: 20px;
    /* Ajoute de l'espace en bas du titre */
    color: #120936;


}

article .col-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Répartit les colonnes également */
}

article .col-container>div {
    flex-basis: 48%;
    /* Définit la largeur des colonnes */
}

h4 {
    font-size: 1.6vw;
    /* Ajuste la taille de la police pour les sous-titres */
    margin-bottom: 20px;
    /* Ajoute de l'espace en bas du sous-titre */
    color: #19075a;
    text-decoration: underline;
}

article p {
    font-size: 1.5vw;
    /* Ajuste la taille de la police pour les paragraphes */
    line-height: 1.6;
    /* Ajuste l'espacement entre les lignes */
    margin-bottom: 16px;
    /* Ajoute de l'espace en bas du paragraphe */

}

.col-container-2 p {
    margin-top: 70px;

}

/* CSS POUR LA PAGE INDEX, PEUT ÊTRE MODIFIER PAR LA SUITE */




/* CSS POUR LA PAGE INDEX, PEUT ÊTRE MODIFIER PAR LA SUITE */


/*CSS POUR LA PAGE SETTINGS*/
.settings_formulaire {
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;

    padding: 1.25em;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0.5em;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
}

.settings_formulaire label {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    margin-bottom: 1.25em;
    margin-right: 1em;
}

input[type="checkbox"] {
    width: 2em;
    height: 1.3em;
}

input[type="number"] {
    width: 100%;
    height: 3em;
    padding: 0.625em;
    margin-bottom: 0.625em;
    border: 0.0625em solid #ccc;
    border-radius: 0.25em;
    font-size: 1.1875em;
}

.buttonHolder {
    text-align: center;
}
