.img-container{
    width:50%;
    display:flex;
    margin: auto;
    gap:5px
}
img{
    max-width: 100%;
    height:auto;
}

.lightbox{
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    position: fixed;
    top:0;
    left: 0;
    z-index: 20;
    padding:2em;
    text-decoration: none;
    color:white;
    height: 90vh;
    text-align: center;
}

.lightbox:target{
    display: block;
    text-align: center;
}

.lightbox img{
    max-width: 50vh;
    max-height: 50vh;
    width:100vh;
    margin: 0 auto;
    box-shadow:  0 0 15px white;
    margin-bottom: 5px;

}
.lightbox span{
    display: block;
    width:100%;
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

.lightbox .figcaption{
    margin:50px;
    font-size: 1.5em;
}