/* Appliquer l'image de fond correctement */
body {
    background-image: url("/static/img/matrixdarker.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100vh; /* Utiliser toute la hauteur de la fenêtre */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    font-size: 3rem;
    color: #30cf55;
    font-weight: bold;
}

/* Conteneur du menu centré */
.menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Menu de navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    color: #30cf55;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #28a745;
}

/* Footer fixé en bas */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #30cf55;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    position: fixed;
    bottom: 0;
}
