.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fond_bleu2.jpg') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: -1; /* Assurez-vous que l'overlay est en dessous du contenu */
    pointer-events: none; /* Ignore les événements de souris */
}

.barremenu {
	padding: 50px; 
	color: white ;
	display: flex;
	justify-content: center;
    gap: 100px;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

a {
    text-decoration: none;
    color: white;
}

.barremenu a {
    position: relative;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out; /* Transition pour la couleur du texte */
}

.barremenu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease-in-out; /* Transition pour la largeur du soulignement */
}

.barremenu a:hover {
    color: white; /* Couleur du texte au survol */
}

.barremenu a:hover::after {
    width: 100%; /* Largeur du soulignement au survol */
}

.menu-container {
    position: fixed;
    top: 0;
    left: -200px; /* Initial position, menu is off-screen */
    width: 200px;
    height: 100%;
    background-color: #2974e4;
    transition: left 0.3s ease; /* Transition effect for smooth sliding */
    z-index: 1; /* Valeur de z-index pour placer le menu au-dessus des autres éléments */
    opacity: 95%;
}

.bouton-menu, .bouton-fermer {
    position: fixed;
    top: 10px;
    font-size: 40px;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    z-index: 1;
}

.bouton-fermer {
    left: 150px;
    display: none; /* Initialement invisible */
}

.choix{
    margin-top: 100px;
    font-size: 25px ;
    color: #fff;
    padding: 17px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

a {
    text-decoration: none;
    color: white;
}

.choix a {
    position: relative;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out; /* Transition pour la couleur du texte */
}

.choix a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease-in-out; /* Transition pour la largeur du soulignement */
}

.choix a:hover {
    color: white; /* Couleur du texte au survol */
}

.choix a:hover::after {
    width: 100%; /* Largeur du soulignement au survol */
}

ul {
    list-style-type: none;
    text-align: left;
    margin-left: 15px;
}

h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

h2 {
    text-align: center;
    color: white;
    font-size: 32px ;
    margin-top: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}
.text{
    text-align: left;
    color:white;
    font-size: 18px;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 40px;
    line-height: 1.55;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.jeu{
    width: 500px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.oie{
    width: 300px;
    justify-content: center;
    position: absolute;
    margin-left: 40rem;

}

.carte{
    width: 255px;
    justify-content: center;
    margin-left: 60rem;
}

@media screen and (max-width: 768px) {
    
    h1 {
        text-align: center;
        color: white;
        font-size: 25px;
        margin-top: 100px;
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: normal;
    }
    
    h2 {
        text-align: center;
        color: white;
        font-size: 22px ;
        margin-top: 40px;
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: normal;
    }

    .text{
        text-align: left;
        color:white;
        font-size: 18px;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 40px;
        line-height: 1.55;
    }
    
    .jeu{
        width: 600px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .oie{
        width: 280px;
        margin-left: 5rem !important;
        position: absolute;
    }
    
    .carte{
        width: 235px;
        margin-left: 24rem;
        position: absolute;
    }
}

@media screen and (max-width: 430px) {
    
    h1 {
        text-align: center;
        color: white;
        font-size: 30px;
        margin-top: 100px;
    }
    
    h2 {
        text-align: center;
        color: white;
        font-size: 25px ;
        margin-top: 40px;
    }

    .text{
        text-align: left;
        color:white;
        font-size: 25px;
        margin-left: 25px;
        margin-right: 25px;
        margin-top: 40px;
        line-height: 1.55;
    }
}