.gallery-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 950px;
    justify-content: center;
}

.art-piece{
    align-items: center;
    justify-items: center;
    margin: 15px;  
}

.img-container{
    height: 250px;
    width: 250px;
    display: flex;
    /* background-color: aliceblue; */
}

img{
    max-width: 100%; 
    max-height: 100%; 
    display: block;
    margin: 0 auto;
    align-self: center;
    justify-self: center;
}