/* Style global */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Fond sombre */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container principal */
.container {
    text-align: center;
}

/* Titre */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Container des boutons */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Boutons stylisés */
.button {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    color: white;
    background-color: #003366; /* Bleu foncé */
    border-radius: 25px; /* Bords arrondis */
    transition: background-color 0.3s ease;
}

/* Hover effect pour les boutons */
.button:hover {
    background-color: #005599; /* Change légèrement le bleu quand survolé */
}
