.container.gallery-container {
    color: #35373a;
    min-height: 100vh;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .06)
}

.tz-gallery {
    padding: 15px
}

    .tz-gallery .lightbox img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: .2s ease-in-out;
        box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
        margin-bottom: 25px;
    }

        .tz-gallery .lightbox img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0, 0, 0, .3)
        }
.baguetteBox-button {
    background-color: transparent !important
}

@media(max-width:768px) {
    body {
        padding: 0
    }

    .container.gallery-container {
        border-radius: 0
    }
    .tz-gallery .lightbox img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: .2s ease-in-out;
        box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
        margin-bottom: 25px;
    }
}