body {
  margin: 0;
  height: 100vh;
  
  align-items: center;
  justify-content: center;
  background: #f8921eff;
  font-family: sans-serif;
}

/*body {
  
  height: 100vh;
  
  background: #f5eded;
  
}*/

.carousel-container {
  perspective: 2000px; /*Para verse en 3D */
  width: 400px; /* Cambio de tamaño */
  height: 500px; /* espacio */
  position: relative;
}

.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;/*Añade la animacion*/
  transition: transform 1s;
}

.carousel-item {
  position: absolute;
  width: 200px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;/*Contorno de las imagenes*/
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform-origin: center center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
