/* container for all images */
.gallery {
    display: flex;            
    flex-wrap: wrap;          
    justify-content: center;  
    gap: 40px;                
    margin: 50px auto;        
}

/* individual images */
.gallery img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

