.villes-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ville-card {
    background-size: cover;
    background-position: center;
    width: calc(25% - 20px);
    height: 200px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ville-card h3 {
    z-index: 2;
    font-family: "oswaldregularitalic";
    font-size: 21px;
    font-weight: 400;
}

/* Pour les tablettes */
@media (max-width: 768px) {
    .ville-card {
        width: calc(50% - 20px); /* 2 cartes par ligne */
    }
}

/* Pour les téléphones */
@media (max-width: 480px) {
    .ville-card {
        width: 100%; /* 1 carte par ligne */
    }
}
