.cajita{
    display: flex;
    flex-direction: row;
}

.cajita div{
    display: flex;
    flex-direction: row;
    align-items: center;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}


const styleCentrarImg = document.createElement("style");
styleCentrarImg.textContent = `
  /* Asegura que el contenedor permita centrar */
  #root > div { 
    display: flex;
    flex-direction: column;
    align-items: center; /* centra hijos en eje horizontal */
  }

  /* La imagen ocupa el ancho pero queda centrada */
  #root > div img {
    display: block;
    margin: 0.6rem auto 1rem;
    width: 100%;
    max-width: 320px; /* evita que crezca demasiado */
    height: 220px;
    object-fit: cover;
  }
`;
document.head.appendChild(styleCentrarImg);
