.lightbox{
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.759);
    width: 100vw;
    height: 100vh;
    overflow: auto;
    top: 0;
    left: 0;
}

.lightbox-content{
    position: relative;   
    width: fit-content;
    height: fit-content;
    margin: 5% auto;
    margin-top: 100px;
}

.lightbox-content img{
    max-width: 85vw;
    max-height: 78vh;
    border: 6px solid white;
    object-fit: cover;
    border-radius: 10px;
}

.lightbox-prev,
.lightbox-next{
    position: absolute;
    background-color: black;
    color: white;
    padding: 9px;
    top: 45%;
    cursor: pointer;
    border-radius: 10%;
}

.lightbox-prev{
    left: 0;
    margin-left: 1rem;
}

.lightbox-next{
    right: 0;
    margin-right: 1rem;
}

@media(max-width: 767px){
    .lightbox-content{
        max-width: 85vw;
        max-height: 78vh;
        margin: 15% auto;
    }
}

@media(max-width: 480px){
    .lightbox-content{
        max-width: 85vw;
        margin: 20px auto;
    }
}