* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 100vh; /* Fills the screen height */
    object-fit: cover; /* Covers all available space */
    display: block;
}

/* For mobile devices */
@media (max-width: 768px) {
    .gallery-img {
        height: 100vh; /* Ensures the image fills the screen on mobile */
    }
}
