

.GalleryContentCard img{
    width: 300px;
    height: 350px;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    overflow: hidden;
    padding: 2px;
    z-index: 1;
    transform: scale(100%);
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
} 

.GalleryContentCard img:hover {
    transform: scale(105%);
    z-index: 2;
}

.GalleryContentCard {
    width: 300px;
    height: 350px;
    overflow: hidden;
}

.GalleryContentCont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.GalleryContentCont {
    margin-top: 50px;
    margin-bottom: 200px;
}