.fit-cover {
  object-fit: cover;
}

.image-container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #f0f0f0;
}

.image-container img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  object-position: center;
}

