.box {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 300px; /* ajusta el ancho del contenedor */
  height: 600px; /* ajusta el alto del contenedor */
  grid-column: span 1;
}

.image.fit {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}