.tz-gallery {
    padding: 40px 40px 10px 40px;
    border: 10px;
    border-style: ridge;
    border-color: lightpink;
}

.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.tz-gallery .lightbox video {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery .lightbox video:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
    border-radius: 4px;
}

.tz-gallery video {
    border-radius: 4px;
}

.baguetteBox-button {
    background-color: transparent !important;
}


@media(max-width: 576px) {
    body {
        padding: 0;
    }

    .container.gallery-container {
        border-radius: 0;
    }

    .tz-gallery .lightbox img {
        height: auto;
    }
    
    .tz-gallery .lightbox video {
        height: auto;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 576px)  {
    .tz-gallery .lightbox img {
        height: 150px;
    }
    
    .tz-gallery .lightbox video {
        height: 150px;
    }
}

@media(min-width: 1200px) {
    .tz-gallery .lightbox img {
        height: 200px;
    }
    
    .tz-gallery .lightbox video {
        height: 200px;
    }
}