/* Pour la police Old English */
@font-face {
    font-family: 'OldEnglish';
    src: url('font/OLDENGL.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Pour la police Edwardian Script */
@font-face {
    font-family: 'EdwardianScript';
    src: url('font/ITCEDSCR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.banniere {
    padding: 1em; /* Vous ne connaissez pas encore cette propriété mais elle permet d'ajouter de l'espace dans notre élément*/
    background-image: url("lac.jpg");
    background-size: cover;
    color: white;
    font-family: 'edwardian script ITC','EdwardianScript', 'Warton', 'Luminary', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', 'sans-serif';
    text-align: center;
}
body {
    background-image: url("parchemin.jpg");
    background-size: cover;
    margin: 1em; /* Vous ne connaissez pas encore cette propriété mais elle permet de s'assurer que nos éléments prennent bien toute la largeur de la page */
    text-align: center;
    color: rgb(160, 82, 45);
    font-family: 'old english text mt','OldEnglish', 'Onyx', 'Times New Roman', 'Times', 'serif';
}
h1 {
    
    font-size: 3em;
}
h2 {
    
    font-size: 2em;
}
h3 {
    
    font-size: 1.5em;
}
p {
    
    font-size: 1,2em;
}

em
{
    font-style: italic;
}
nav {
    padding: 2em;
    text-align: center;
    border-bottom: 0.1em solid #A0522D; /* Rappel de la terre du Salagou */
    position: sticky; /* Le menu reste en haut quand on scrolle */
    top: 0;
    z-index: 1000;
    font-size: 1,2em;
    font-family: 'old english text mt', 'OldEnglish', 'Onyx', 'Times New Roman', 'Times', 'serif';
    background-color: #e9dbc2;
}
footer
{
    padding: 1em;
    padding-top: 0;
    text-align: center;
    border-top: 0.1em solid #A0522D; /* Rappel de la terre du Salagou */
    bottom: 0;
    font-family: 'old english text mt', 'OldEnglish', 'Onyx', 'Times New Roman', 'Times', 'serif';
}
.lien-menu {
    text-decoration: none;
    color: #5d4037; /* Marron foncé élégant */
    padding: 1em 2em;
    margin: 0 1em;
    font-weight: 500;
    border-radius: 0.4em;
    transition: background-color 0.3s, color 0.3s;
}

.lien-menu:hover {
    background-color: #A0522D;
}