/* 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 {
    display: inline-block;
    border: 4px solid red;
}

/* Apply styles to the first container */
#I {
    background-color: #ffcccb; /* Change this to the desired color for spiderman.png */
}

/* Apply styles to the second container */
#darling {
    background-color: #008a6b; /* Change this to the desired color for querfeld.png */
}

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

