/* Apply styles to the body */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Apply styles to the image containers */
.image-container {
    margin: 10px;
    text-align: center;
    overflow: hidden;
}

/* Apply styles to the large container */
.large {
    float: left;
    width: 60%;
    background-color: lightgray;
}

/* Apply styles to the small container */
.small {
    float: left;
    width: 40%;
    background-color: darkgray;
}

/* Apply styles to the images to make them responsive */
img {
    max-width: 100%;
    height: auto;
}
