.image-container {
/* Set the container's width, the image will scale relative to this */
width: 500px;
}
.resize-image {
/* This makes the image 50% the width of its parent container */
width: 50%;
/* height: auto ensures the image maintains its aspect ratio proportionally */
height: auto;
}