#modalImage {
    border-radius: 5px;
    transition: 0.3s;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999999999999999999999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    border-radius: 3px;
}

.lightbox-content {
    margin: 30px auto;
    display: block;
    position: relative;
    width: fit-content;
    height: fit-content;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    min-width: 200px;
    min-height: 200px;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.50);
}

#caption {
    margin: auto;
    display: block;
    max-width: 90vw;
    padding: 10px 0;
    height: 150px;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.lightbox-content, #caption {
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.closeImage {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #FFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.lightbox-content {
    width: 100%;
}
}