body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
}

.menu-container {
    display: flex;
    align-items: center;
    background-color: #34495e;
    padding: 15px;
    justify-content: space-between;
}

.logo img {
    width: 80px; /* Taille de l'image pour les appareils mobiles */
    height: auto;
    margin-right: 10px;
}

.menu-burger {
    display: flex; /* Afficher le menu burger pour les deux tailles d'écran */
}

.menu-burger a {
    text-decoration: none;
    color: white;
    font-size: 8px;
    font-weight: bold;
    margin: 0 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrer les boîtes */
    color: white;
    margin-top: 50px;
}

.box1 {
    flex: 1 1 calc(100% - 20px); /* Occupe la pleine largeur */
    margin-bottom: 20px;
    max-width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box1 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px; /* Ajout de marge en bas pour l'espace entre l'image et le texte */
}

.box1 .text {
    padding: 20px;
    background-color: #34495e;
    border-radius: 10px;
}

/* Media query pour les écrans plus larges */
@media only screen and (min-width: 768px) {
    .logo img {
        width: 150px; /* Taille de l'image pour les écrans plus larges */
    }

    
    
    .container {
        justify-content: space-between; /* Rétablir l'espacement entre les boîtes */
    }

    .box1 {
        flex: 1 1 calc(50% - 20px); /* Deux colonnes pour les écrans plus larges */
        max-width: calc(50% - 20px);
    }

    .image-zoom-container {
        overflow: hidden;
        position: relative;
    }
    
    .image-zoom {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.3s ease; /* Ajoute une transition douce pour l'effet de zoom */
    }
    
    .image-zoom:hover {
        transform: scale(1.2); /* Zoom sur l'image au survol */
    }
    





}
