.Contenu {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-right: 40px;
}

.zone {
    display: flex;
    width: 100%;
    height: 400px; /* ajustable */
}

.rectangle-noir {
    background: linear-gradient(to right, rgb(55, 53, 52) 95%, rgba(55, 53, 52, 0) 120%);
    width: 50%;
    height: 100%;
    color: white;
    font-size: 1.2rem;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.rectangle-noir strong {
    font-size: 2.4rem;  
}

.Media {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pour rendre les zones paires inversées */
.zone.Paire {
    flex-direction: row-reverse;
}

.zone.Paire .rectangle-noir {
    background: linear-gradient(to left, rgb(55, 53, 52) 95%, rgba(55, 53, 52, 0) 120%);
}

#map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 425px) {
    .zone {
        display: block;
        height: auto;
    }
    .rectangle-noir, .Media {
        width: 100%;
    }
    .Media #map {
        height: 400px;
    }
}

body {
  overflow: scroll; /* ou auto */
  scrollbar-width: none; /* Pour Firefox */
  -ms-overflow-style: none; /* Pour Internet Explorer et Edge */
}

body::-webkit-scrollbar {
  display: none; /* Pour Chrome, Safari et Opera */
}

/* Quand il y a 2 images, on veut 2 colonnes, une à gauche, une à droite */
.Media.two-images {
    flex-direction: row;
    justify-content: space-between;
}

.Media.two-images img {
    height: 100%;
    width: 50%;
}

/* Quand il y a 4 images, on veut une grille 2x2 */
.Media.four-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    padding: 0%;
    margin: 0%;
}

.Media.four-images img {
    height: 200px;
    width: 100%;
    justify-self: center;
    align-self: center;
}