body, html {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.image-gallery {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
