.parallax {
    /* Crear un contenedor de parallax con una altura específica */
    height: 1200px;
    overflow: hidden;
    position: relative;
  }
  
  .parallax img {
    /* Hacer que la imagen se ajuste y se mueva */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
  }
  
  .parallax::before {
    /* Crear el efecto parallax */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
    transform: translateZ(-1px) scale(2);
  }
