.accueilSelection {
    margin-top: 5%;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.card {
    margin-top: 2%;
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}

.card img.hover-zoom:hover {
    transform: scale(1.1);
}

.card img:hover ~ .card,
.card img:hover ~ footer {
    filter: brightness(50%);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.blue {
    background-color: #003366;
}

.white {
    background-color: #ffffff;
    color: #000000;
}

.red {
    background-color: #cc0000;
}