.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox .close {
    position: absolute;
    top: 0px;
    right: 40px;
    font-size: 40px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 300;
}

.lightbox .close:hover {
    color: rgb(255, 0, 0);
    transform: scale(1);
}

@media screen and (max-width: 480px) {
    .lightbox .close {
        top: 20px;
        right: 20px;
    }
}