:root{
    /* les couleurs du site */
    --ecru: #fff8dc;
    --jaune: #e4a600;
    --bleu: #1550c6;
    --bRoi: #4169E1;
    font-size: 12px;
    /* font-family: 'Philosopher', 'Lora', Tahoma, sans-serif; */
    /* font-family: 'Philosopher', Tahoma, sans-serif; */
}

@font-face {
    font-family: 'coolveticaRegular';
    src: url('/fonts/coolvetica rg.otf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
}

@font-face {
    font-family: 'sansationRegular';
    src: url('/fonts/Sansation_Regular.ttf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
}

body{
    font-family: 'sansationRegular', sans-serif;
}

main{
    padding: 0 10px;
} 

/* page index */
h1 {
    color: #ebd107;
    /* color: rgba(240, 221, 7, 0.76); */
    font-size: 3.5rem;
    text-align: center;
}

.histoireText{ 
    width: 80%; /* Largeur de la section à 80% de la page */
    max-width: 1200px; /* Largeur maximale pour éviter qu'elle devienne trop large */
    margin: 0 auto; /* Centre la section horizontalement */
    padding: 20px; /* Ajoute un padding autour du contenu */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* ajoute un effet d'ombre pour la démarquer */
}
/* fin page index */
/* page admin modifier histoire */
.titreAdmin{
    text-align: center;
    font-size: 2.5rem;
    color: black;
}

.form-group{
    text-align: center;
}

.form-control{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px; 
}

.btnCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* fin page admin modifier histoire */
/* Fin de la vue portable */
/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:1024px) {
    :root {
        font-size: 16px;
    }

    h1{
        margin: 20px;
    }
}
/* fin de la vue ordinateur */
