.shiftHeadline{
  perspective: 1000px;
 
  transform: rotateY(14deg) translateZ(-105px) skew(54deg, -17deg) scaleY(0.86667);
  /* transform-origin: left center; */
  backface-visibility: hidden;
  box-shadow: -40px 0 60px rgba(0, 0, 0, 0.2);
  /* background: linear-gradient(to right, #ffffff 60%, #e0e0e0); */
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.6s ease, box-shadow 0.6s ease;

}

.HeadlineEffect {
    background: linear-gradient(
        to right,
        #7953cd 20%,
        #00affa 30%,
        #0190cd 70%,
        #764ada 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 4.5s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


/* Bottom Ticker */
  @keyframes marquee {
    0% { transform: translateX(25%) }
    100% { transform: translateX(-100%) }
  }

  .animate-marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
  }