.gallery img {
    cursor: pointer;
    transition: .3s;
    height: 190px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.gallery img:hover{
    transform:scale(1.05);
}

.lightbox{
    display:none;
    position:fixed;
    z-index:9999;
    padding-top:60px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    text-align:center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border: 4px solid #d1e9ff;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    font-weight: 100;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: #ffffff;
    font-size: 40px;
    padding: 10px;
    font-weight: 500;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}