/* Style général */
body {
    font-family: "Georgia", serif;
    background-color: #f5f9f8;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Bandeau */
header {
    background-color: #d1dde6;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #0d3b66;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 10px;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    margin: 0 10px;
}

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

/* Conteneur principal */
.poem-container {
    background-color: white;
    padding: 30px;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gestion de l'illustration */
.poem-image {
    margin-bottom: 20px;
}

.poem-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Titre du poème */
.poem-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #0d3b66;
    margin-bottom: 40px; /* Augmente l'espacement entre le titre et le début du poème */
}

/* Texte du poème */
.poem-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
}

/* Espacement entre les strophes */
.poem-text p {
    margin-bottom: 12px;
}

/* Auteur du poème sous le poème */
.poem-author {
    font-style: italic;
    margin-top: 40px; /* Augmente l'espace entre dernier vers et nom de l'auteur */
    font-size: 1em;
    color: #444;
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}
