.gallery-wrapper{
    max-width: 100%;
    padding: 2rem;
}

.gallery-container{
    display: flex;
    gap: 1rem;
}

.column{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo{
    position: relative;
    
}

.photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2%;

}

.photo-overlay{
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 1.5rem;
 text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 2%;
    opacity: 0;
}

.photo-overlay:hover{
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 1;
}


.image-viewer-container{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);

    display: none;
    align-items: center;
    justify-content: center;
}

.image-viewer {
    max-height: 90%;
    max-width: 80%;
    object-fit: cover;

}

.swipe-left{
    cursor: pointer;

    padding-right: 1rem;
    height: 30%;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.swipe-right{
    cursor: pointer;

    
    padding-left: 1rem;
    height: 30%;
    width: 15%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.swipe-left span, .swipe-right span{
    display: block;
    width: 40px;
    height: 3px;
    background: white;
}

.swipe-left span:nth-child(1){
    rotate: 135deg;
    translate: 0 -12px;
}
.swipe-left span:nth-child(2){
    rotate: 45deg;
    translate: 0 12px;
}

.swipe-right span:nth-child(1){
    rotate: 45deg;
    translate: 0 -12px;
}
.swipe-right span:nth-child(2){
    rotate: -45deg;
    translate: 0 12px;
}

@media screen and (max-width:1050px) {

    .gallery-container{
        flex-direction: column;
    }
    .image-viewer {
        max-width: 70%;
    
    }
}