body {
    font-family: Arial, sans-serif;
    background-color: #eee;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
}

.gallery img {
    width: 100%;
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensure the image covers the entire area */
    display: block;
}

.no-scroll {
    overflow-x: hidden;
}