
body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background-color: #f5f5f5;
    color: black;
}

h1 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    line-height: 1.2;
    font-size: 72px;
    margin: 30px 0;
}

.contenu {
    max-width: 800px;     
    margin: 0 auto;       
    padding: 0 24px;      
}

h2 {
    font-weight: bold;
    color: brown;
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 22px;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

@media (max-width: 600px) {
    h1 {
        font-size: 40px;
        margin: 20px 0;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 18px;
    }

    .contenu {
        padding: 0 16px;  /* marges mobiles type Gorafi */
    }
}

.image-article {
    margin: 30px auto;
    text-align: center;
}

.image-article img {
    width: 100%;          
    max-width: 700px;     
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;  
}

.image-article figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    font-style: italic;
    text-align: center;
}

.header-journal {
    background-color: white;
    border-bottom: 1px solid #ccc;
    padding: 20px 24px;
}

.logo-titre {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 70px;   /* taille principale */
    width: auto;
}


.nom-journal {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 600px) {
    .logo {
        height: 50px;
    }

    .nom-journal {
        font-size: 30px;
    }

    .header-journal {
        padding: 16px;
    }
}

