@font-face {
            font-family: 'OldLondon';
            src: url('../fonts/OldLondon.ttf') format('truetype');
        }

#accueil{
    text-align: center;
    border: none;
    font-family: 'OldLondon', serif;
    font-size: 60px;
}

body{
    background-color: #f5e7c1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'OldLondon', 'Times New Roman', serif;
    background-color: #f5e7c1; /* Fond vieux papier */
    border: 2px solid #5a3921; /* Bordure marron */
    border-radius: 5px;
    padding: 20px;
    width: 250px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

nav ul menu {
    font-size: 30px;
    color: #5a3921; /* Marron foncé */
    text-align: center;
    margin-bottom: 15px;
    text-decoration: underline;
    font-weight: bold;
}

nav ul li {
    margin: 10px 0;
    text-align: center;
}

nav ul li a {
    color: #3a2c1a; /* Marron foncé */
    text-decoration: none;
    font-size: 25px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px;
    border-bottom: 1px dashed #5a3921; /* Ligne pointillée */
}

nav ul li a:hover {
    color: #8b4513; /* Marron plus clair au survol */
    background-color: rgba(139, 69, 19, 0.1);
    transform: translateX(5px); /* Effet de déplacement léger */
} 


/* Style pour la div "actualite" */
.actualite {
    background-color: #f5e7c1; /* Fond vieux papier */
    border: 2px solid #5a3921; /* Bordure marron */
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Lora', serif;
}

/* Titre "Actualités" */
.actualite h2#act {
    font-family: 'OldLondon', serif;
    color: #5a3921; /* Marron foncé */
    text-align: center;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
    text-decoration: underline;
    border-bottom: 1px solid #8b4513; /* Ligne de séparation */
    padding-bottom: 5px;
}

/* Style pour le texte en emphase (em) */
.actualite em {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: #3a2c1a; /* Marron foncé */
    display: block;
    text-align: center;
    font-style: normal; /* Retire l'italique par défaut de <em> */
    margin: 10px 0;
    line-height: 1.5;
}

/* Style pour le lien dans la div */
.actualite a {
    color: #8b4513; /* Marron clair */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.actualite a:hover {
    color: #5a3921; /* Marron foncé au survol */
    text-decoration: underline;
    cursor: pointer
}

.container {
    display: grid;
    grid-template-columns: auto 1fr; /* La div à gauche et l'image centrée */
    align-items: center; /* Centre verticalement */
    gap: 250px;
}

#tintin {
}