/* Style général */
@media screen and (max-width: 869px) {
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* En-tête */
header {
    z-index: 1;
    background-color: darkgreen;
    padding: 10px 0;
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
}

header img {
    width: 50px;
}

header h2 {
    margin: 0;
    font-size: 2.5em;
    font-family: 'Times New Roman', Times, serif;
}

/* Section principale */
main {
    top:110px;
    position: relative;
    padding: 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: darkgreen;
    border-bottom: 2px solid darkgreen;
    padding-bottom: 10px;
}

main p {
    margin-bottom: 20px;
}

/* Articles */
article {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

article h3 {
    color: darkgreen;
    margin-bottom: 10px;
    font-size: 1.5em;
}

article p {
    margin-bottom: 10px;
}

article a {
    color: darkgreen;
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

article img, article video {
    display: block;
    width: 100%;
    border-radius:10px 10px 0 0;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    margin-bottom: 10px;
}

/* Pied de page */
footer {
    position: fixed;
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
aside{
    display: none;
}

}