.galleryContainer{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0 auto;
}

.galleryRow{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* width: 100%; */
    flex-wrap: wrap;
}

.galleryItm{
    margin: 5px auto;
    position: relative;
    max-width: 350px;
    cursor: pointer;
    margin:10px
}

.galleryItm img{
    border-bottom: solid 8px #7F0B0E;
    object-fit: cover;
    width:325px;
    height: 260px;
}

.galleryDesc{
    width: 100%;
    bottom: 10px;
    height: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    font-size: 16px;
    color: white;
    padding-top: 0px;
    overflow: hidden;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .galleryDesc{
        padding-bottom:269px;
}
}

.galleryDesc h2 {
    margin: 0px;
    font-size: inherit;
    color: inherit;
}