body {
    margin: 0;
    padding: 20px;
    background-color: #121212; /* Dark background for better photo viewing */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
}

#gallery {
    width: 100%;
    display: flex;
    flex-direction: column; /* Stacks images vertically */
    align-items: center;
}

img {
    /* "Take up most of the website" */
    width: 90%; 
    max-width: 1200px; /* Prevents images from getting too huge on ultra-wide monitors */
    height: auto;
    
    /* Spacing and styling */
    margin-bottom: 40px; /* Space between the stacked images */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    img {
        width: 95%;
        margin-bottom: 20px;
    }
}
