* {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
}

:root {
    --white_color: white;
    --black_color: black;
    --green_color: #378110;
    --green_clear: #C6DFCC;
    --red_clear: #FE715F;
    --yellow_clear: #FCB54B;
    --blue_clear: #A9E3F7;
}

/* Empêche le défilement des éléments */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    
}
nav{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red_clear);
    height: 50px;
    position: fixed;
    top: 0;
    width: 100%;
    font-size: 25px;
}
/* Style du bouton circulaire */
.circle {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: 10px;
  }
/* Styles supplémentaires pour d'autres éléments */
header {
   
    color: black;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2, h3 {
    color: var(--yellow_clear);
    margin-bottom: 10px;
}

ul {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: relative;
    padding: 10px;
    background-color: var(--red_clear);
    color: white;
    margin-top: 20px;
    
}
.copy{
    position: absolute;
    bottom: 0;
}
.liste_gen{
    display: flex;
    justify-content: center;
    
}
.liste_gen ul li{
    list-style-type: none;
}
section p {
    line-height: 25px;
}

ul li {
    padding: 5px;
}

.annexe h2, .annexe h3 {
    color: var(--red_clear);
}
ul .bolde{
    font-weight: bold;
}