.imageContainer {
    position: relative;
    display: block; /* Ensures proper layout */
    max-width: 500px; /* Limits container size */
    width: 100%; /* Makes it responsive */
    margin: 0 auto; /* Centers the container */
}

.imageContainer img {
    max-width: 100%; /* Ensures image never exceeds container */
    height: auto; /* Keeps aspect ratio */
    display: block; /* Removes extra white space */
}
