body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px; /* Space between images */
    padding: 20px;
}

    .container img {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
        max-width: 600px; /* Set a maximum width for images */
        display: block; /* Remove bottom space */
        margin: 0 auto; /* Center images if they are smaller than the container */
    }

