/* Remplacer l'élément img par un div */
.carte {
    cursor: pointer;
    margin: 1.5rem;
    width: 15rem;
    height: 15rem;
    background-image: url("../image/mystere2.jpg");
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}

.gagner {
    background-image: url("../image/korogu.png");
}

.perdu {
    background-image: url("../image/ganon.jpg");
}

li {
    list-style: none;
}

/* Container flexible pour liste horizontale */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 1rem 0;
}
