body {
    background-color: #121212; /* Arrière-plan sombre */
    color: #ffffff; /* Couleur du texte blanche pour un bon contraste */
    font-family: 'Arial', sans-serif; /* Police de caractères simple et lisible */
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #000000; /* Noir */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #ff0000; /* Rouge */
    font-size: 2.5em;
}

/* Navigation bar */
nav {
    background-color: #1a1a1a; /* Gris foncé */
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: #ff0000; /* Rouge */
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}

nav a:hover {
    color: #ffffff; /* Blanc pour l'effet de survol */
}

/* Main content */
main {
    padding: 20px;
}

main h2 {
    color: #ff0000; /* Rouge */
}

main p {
    line-height: 1.6;
}

/* Buttons */
button {
    background-color: #ff0000; /* Rouge */
    border: none;
    color: #ffffff; /* Blanc */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e60000; /* Rouge plus foncé pour l'effet de survol */
}

/* Footer */
footer {
    background-color: #000000; /* Noir */
    color: #ffffff; /* Blanc */
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
