/* Reset des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* En-tête */
h1 {
    font-size: 2.5rem;
    margin-top: 20px;
    color: #333;
}

/* Texte sous le titre */
h1+p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

/* Sous-titres pour chaque section */
h2 {
    font-size: 1.8rem;
    margin: 20px 0;
    color: #2c3e50;
}

/* Style pour les paragraphes */
p {
    font-size: 1rem;
    color: #555;
    margin: 10px 20px;
    line-height: 1.8;
    text-align: center;
}

/* Section contenant les textes */
section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;

    /* Set a max height and make it scrollable if exceeded */
    max-height: 400px;
    /* Adjust the height as needed */
    overflow-y: auto;
}

/* Image de la frise historique */
#imgFrise {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    max-height: 400px;
}

/* Lien de la source de l'image */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Espacement du bas de page */
footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}


img {
    max-width: 200px;
}