.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgb(161, 161, 161);
    border: 2px solid rgb(161, 161, 161);
    cursor: pointer;
}

.gallery-container-noborder {
    border: 0.25px solid rgb(161, 161, 161);;
}

.gallery-image-slide {
    width: 100%;
    max-width: 100vw;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: white;
}

.gallery-container:hover .gallery-overlay {
    opacity: 0.7;
}

.gallery-text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}


.gallery-row {
    display: grid;
    margin: 1% 0;
}



.gallery-col {
    float: left;
    padding: 1%;
}