body {
    background-image: url("../Images/fond-noir.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: auto;
    padding: 0;
}

header{
    padding: 130px;
    color: aliceblue;
    text-align: center;
}

nav {
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

/* Style pour le ul */
.menu {
    list-style-type: none;
    display: flex;
    padding: 260px;
    margin-left: 100px;
    align-items: center;
    align-self: center;
}

/* Style pour les li */
.menu li {
    position: relative;
}

/* Style pour les liens */
.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 15px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Effet de survol pour les liens */
.menu li a:hover {
    background-color: #575757;
}

/* Ajout d'un effet d'animation */
.menu li a::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff6347; /* Couleur de l'animation */
    transition: width 0.3s;
    bottom: 0;
    left: 0;
}

.menu li a:hover::after {
    width: 100%;
}