body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #333333; /* Main background color */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 40px);
    margin: 20px;
}

.image-wrapper {
    display: flex;
    background-color: #1a1a1a; /* Darker background color for the image wrapper */
    border-radius: 15px; /* Rounded edges */
    overflow: hidden; /* Ensures the images don't break the rounded border */
}

.image-container img {
    max-width: 50%; /* Half width for each image */
    max-height: 100%; /* Full height within the container */
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Removes bottom margin/whitespace inherent in inline elements */
}

/* Additional styling as needed */
