/* Center the images within div containers */
.maus {
    text-align: center;
}

/* Make the images responsive */
img {
    max-width: 100%;
    height: auto;
}

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

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

/* Float the containers next to each other */
.hund {
    float: right;
}

/* Clear the float to prevent layout issues */
.maus::after {
    content: "";
    display: table;
    clear: both;
}

.maus {
    float: left;
}