image-box {
  width: 180px;  /* Set the desired size of your box */
  border: 1px solid #ccc; /* Optional: adds a border to see the box boundaries */
}

.image-box img {
  width: 100%;   /* Image takes the full width of its container */
  height: 100%;  /* Image takes the full height of its container */
  object-fit: cover; /* Controls how the image fits */
}