@charset "UTF-8";
/* CSS Document */

/* Prevent anti-aliasing for all images */
img {
  image-rendering: pixelated;
}
.image-container {
  display: flex;
  height: 200px; /* Set the height as per your requirement */
}

.image-container img {
  height: 100%; /* Set the height of the images to match the container */
  width: auto; /* Let the width vary based on image aspect ratio */
  flex: 1; /* Allow the images to grow and shrink equally */
  object-fit: cover; /* Maintain aspect ratio and cover the container */
}
