.image-gallery {
            display: flex;
            gap: 20px;
            flex-flow: row wrap;
            justify-content: space-around;
            align-items: center;
        }
        .image-gallery img {
            width: 250px;
            height: 167px;
            border: 3px solid #737373;
            border-radius: 10px;
        }
        img:hover{
            transform: scale(1.1);
            
        }