    .zoom-hover {
        transition: transform 0.3s ease-in-out;
        display: inline-block;
    }
    
    .zoom-hover:hover {
        transform: scale(1.1);
    }
    

        @keyframes zoomIn {
            0% {
            transform: scale(0.8);
            opacity: 0;
            }
            100% {
            transform: scale(1);
            opacity: 1;
            }
        }
        
        .zoom-in {
            animation: zoomIn 0.6s ease-out forwards;
            display: inline-block; /* important pour les img */
        }
        
        