.container_sc {         
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.sc_contenido{
    width: 90vw;
    z-index: 3;
    display: block;    
    top: 150%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
    padding: 10px;
    overflow: hidden;
    margin: auto;
}

.sc_contenido p{    
    text-align: center;  
    font-size: 1.2em;
    color: #742151;
    background: none;
    left: 0;
    padding-top: 20px;
    padding-bottom: 31px;
    font-family: 'arial_narrow';
}

.sc_contenido h2{
    font-size: 1.5em;
    text-align: center;     
    color: #742151;
    background: none;
    left: 0;
    padding-top: 20px;
    padding-bottom: 31px;
    font-family: 'arial_narrow';
}

 /* Solo modificamos el párrafo */
 .parallax-wrapper {
    overflow: visible; 

  }
  .paralax_T {
    position: relative; /* Para que el translate afecte solo este elemento */
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
	transform: skewY(-5deg);
  }



canvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(100vw, 50vw + 50vh, 100vw);
    height: clamp(100vh, 50vh + 50vw, 100vh);
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

