/* Conteneur de la galerie */
        .gallery {
            display: grid;
            /* Responsive Grid: Crée autant de colonnes de 200px (min) que possible */
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            padding: 15px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery a {
            display: block;
            height: 100%; 
            overflow: hidden;
        }

        .gallery img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* Recouvre sans déformer */
            transition: transform 0.3s ease-in-out;
        }

        .gallery img:hover {
            transform: scale(1.05);
            opacity: 0.8;
        }
        
        /* Styles pour le titre */
        main h1 {
            text-align: center;
            margin-top: 30px;
        }
        main p {
            text-align: center;
            max-width: 800px;
            margin: 10px auto 20px;
            padding: 0 15px;
        }
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}