body {
    font-family: sans-serif;
    margin: 0px;
    background-color: #000000;
    color: #333;
}

h1 {
    text-align: center;
    color: #0056b3;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
    background-color: #000000;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.image-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 0px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: transform 0.2s ease-in-out;
}

.image-gallery a:hover {
    transform: scale(1.03);
}

.image-gallery img {
    width: 100%;
    height: 400px;
    /* Fixed height for thumbnails */
    object-fit: cover;
    /* Ensures images cover the area without distortion */
    display: block;
}

/* .lg-fullscreen {
    display: none;
} */

.lg-sub-html {
    position: fixed;
    right: 0;
    width: 30vw;
    background-color: rgba(255, 255, 255, 0.2);
    bottom: 0;
    top: 0;
    opacity: 1 !important;
}