body{
    background-color: #1D0F26;
    margin: 0;
    font-family: Arial, sans-serif;
    padding-bottom: 60px;
}

li{
    flex: 1; /* Permet aux blocs de s'adapter à la largeur */
    background-color: #CBC4BD; /* Couleur de fond */
    padding: 15px;
    text-align: center;
    color: #305C5F; /* Couleur du texte */
    margin: 3px;
    border-radius: 5px; /* Coins arrondis */
    list-style-type: none;
    margin-left: -20px; /* Pour aligner avec le bord gauche */
}

li:hover{
    background-color: #C2C0A7; /* Couleur de fond */
    color: #B7652C; /* Couleur du texte */
}

section {
    flex: 1; /* Permet aux blocs de s'adapter à la largeur */
    background-color: #CBC4BD; /* Couleur de fond */
    padding: 10px;
    text-align: center;
    color: #305C5F; /* Couleur du texte */
    border-radius: 30px; /* Coins arrondis */
    border: 15px solid #1D0F26;
}

#footer{
    background-color: #CBC4BD;
    color: #305C5F;
    display: block;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: fantasy;
}

section::selection {
    background: #CBC4BD;
    color: #B7652C;
  }

.button{
    background-color: #C2C0A7; /* Couleur de fond */
    color: #B7652C;
    font-weight: bold;
}

.button:hover{
    background-color: #1D0F26; /* Couleur de fond */
    color: #305C5F;
    cursor: pointer;
    border: #CBC4BD 2px solid;
}