@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap');

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    background-color: aliceblue;
    width: 94%;
    padding: 10px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
    margin: 0px auto;
    gap: 10px;

}

.gallery-item{
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: 0.9;
    cursor: pointer;
}

.gallery-item:hover{
    opacity: 1;
}
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox{
    position: fixed;
    display: none;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;

}

.lightbox-content{
    position: relative;
    width: 65%;
    height: 58%;
    margin: 5% auto;
}

.lightbox-content img{
    width: 100%;
    height: 100%;
}