/* ----------------------------- */
/* ==reset */
/* ----------------------------- */

        #visit-counter {
            font-size: 1em;
            margin: 20px;
        }
        
        body {
            margin: 0;
            background-color: #95a1a1; /* couleur brique code : 95a1a1 */
            color: #fff;
            font-family: 'Arial', sans-serif;
            text-align: center;
        }
        .menu {
            width: 800px;
            margin: 0 auto; /* Centrer le menu */
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            background-color: #3333331b;
        }
        .menu a {
            color: white;
            padding: 14px 20px;
            text-decoration: none;
            text-align: center;
            border-radius: 5px;
            margin: 0 5px;
            transition: background-color 0.3s;
        }
        .button0 {
            background: linear-gradient(to bottom, #5fca62, #65c86a);
        }
        .button1 {
            background: linear-gradient(to bottom, #4CAF50, #45a049);
        }
        .button2 {
            background: linear-gradient(to bottom, #45a049, #3e8e41);
        }
        .button3 {
            background: linear-gradient(to bottom, #3e8e41, #387d39);
        }
        .button4 {
            background: linear-gradient(to bottom, #387d39, #326e33);
        }
        .button5 {
            background: linear-gradient(to bottom, #326e33, #2c5f2d);
        }
        .button6 {
            background: linear-gradient(to bottom, #2c5f2d, #265026);
        }
        .button7 {
            background: linear-gradient(to bottom, #265026, #204120);
        }
        .menu a:hover {
            opacity: 0.8;
        }
        h1 {
            margin-top: 50px;
            font-size: 3em;
        }
        .image-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px auto; /* Centrer la galerie d'images */
            max-width: 800px; /* Pour que les images ne soient pas trop étalées */
        }
        .image-gallery img {
            width: 200px;
            height: 300px;
            object-fit: cover;
            border: 5px solid #fff;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
        }
        .image-gallery img:hover {
            transform: scale(1.1);
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            font-size: 0.9em;
            background-color: #8B0000;
        }
