/*=============================================
Gallery with image containers.
==============================================*/

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 50px;
    max-width: 1500px;
    text-align: center
}

.gallery_cell{
    max-width: 450px;
    max-height: 450px;
    flex-grow: 1;
    flex-basis: 450px; /*Could be relaxed for image resizing.*/
    background-color: rgba(55, 00, 88, .5);
    border: 5px solid;
    margin: 3px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery_cell a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#gallery_item {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.desc {
    background-color: rgba(55, 00, 88, .9);
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    padding: 3px;
    border: 1px solid;
}

.video_cell {
    max-width: 600px;
    max-height: 600px;
    flex-grow: 1;
    flex-basis: 400px; /*Could be relaxed for image resizing.*/
    border: 5px solid;
    margin: 3px;
    position: relative;
    text-align: center;
}

#my_video {
    max-width: 600px;
    object-fit: contain;
}
