* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111d13;
    background-color: #a1cca5;
    overflow-x: hidden;
}
.menu {
    justify-content:center;
}
.topnav {
    background-color: #709775;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    justify-content:center;
    transition: top 0.3s;
    transition-delay: 0.2s;
    z-index:1;
}
.topnav.hidden {
    top: -80px;
}
  .topnav a {
    float: left;
    text-align: center;
    padding: 1em 0.5em;
    text-decoration: none;
    font-size: 1em;
    color: #111d13
  }
  .topnav a:hover {
    background-color: #415d43;
  } 
  .topnav a.slash:hover {
    background-color: #709775;
  } 
  .topnav a.split {
    float: right;
}
.topnav a.icon {
    display : none;
}

.moon-dance-regular {
    font-family: "Moon Dance", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.lora-normal {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

@media (max-width: 768px) {
    .menu a {
        display: none; /* Masquer les liens sauf l'icône hamburger */
    }
    .topnav a.icon {
        display: block; /* Afficher l'icône hamburger */
        float: right;
    }
    .menu.responsive a {
        display: block; /* Afficher les liens en mode responsive */
        text-align: left;
    }
    .bouton_accueil.responsive_accueil {
        display: none;
    }
}
@media (max-width: 480px) {
    .menu a:not(:first-child) {
        padding-top:1.81em;
        font-size: 0.75em;
    }
}

footer {
    background-color: #709775;
    color: #111d13;
    text-align: center;
    padding: 1rem 0;
    margin-top: 4rem;
}