body {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
}
  
  .fade {
    position: relative;
    width: 100%;
    min-height: 20vh;
    top: 10px;
    background-image: linear-gradient(0deg, transparent, black 75%);
    z-index: 3;
  }
  
  .star-wars {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100px;
    width: 70%;
    color: #feda4a;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 100%;
    font-weight: 600;
    letter-spacing: 6px;
    line-height: 150%;
    perspective: 400px;
    text-align: justify;
    z-index: 2;
    margin: 0 auto;
  }
  
  .crawl {
    position: relative;
    top: 9999px;
    transform-origin: 50% 100%;
    animation: crawl 160s linear;
  }
  
  .crawl > .title {
    font-size: 90%;
    text-align: center;
  }
  
  .crawl > .title h1 {
    margin: 0 0 100px;
    text-transform: uppercase;
  }
  
  @keyframes crawl {
    0% {
      top: 0;
      transform: rotateX(20deg)  translateZ(0);
      opacity: 1;
      visibility: visible; /* O elemento está visível */
    }
    6% {
        opacity: 0; /* Torna-se invisível */
        visibility: hidden; /* Esconde o elemento */
    }
    100% { 
        top: -6000px;
        transform: rotateX(50deg) translateZ(-2500px);
        opacity: 0; /* Torna-se invisível */
        visibility: hidden; /* Esconde o elemento */
    }
  }