body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
.gallery {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center;
    gap: 20px;
}
.gallery img {
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Set a maximum width */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}
.gallery img:hover {
    transform: scale(1.05);
}
.gallery img.large-image {
    width: 100%; /* Larger width for the first two images */
    max-width: 1000px; /* Larger max-width */
}
.gallery img.xlarge-image {
    width: 100%; /* Larger width for the first two images */
    max-width: 1500px; /* Larger max-width */
}
