
main .image-popup { display: none; }

main .image-popup.show { 
    display: block;
    position: fixed;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
}

main .image-popup .image-wrapper {
    position: relative;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    max-width: 80vw;
    max-height: 90vh;
    width: fit-content;
    height: fit-content;
    padding: 2rem 2rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
}

main .image-popup .image-wrapper img {
    max-width: 80vw;
    max-height: 80vh;
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

main .image-popup .image-wrapper .caption {
    color: #666;
    font-size: 14px;
    padding: 1rem 4rem 0 4rem;
    text-align: center;
    width: 100%;
    line-height: 1.5em;
    display: block;
}

