:root {
    --main: #ffb13a;
    --second: #4bd5ee;
    --font: 'Roboto', 'Oxygen', sans-serif;
  }
  
  html {
    font-size: 10px;
  }
  
  body {
    overflow: hidden;
    background-color: black;
    background-image: url(fondo\ star\ wars.gif);
    font-family: var(--font);
    margin: 0;
    color: white;
  }
  
  h2 {
    text-align: center;
    margin: 0 0 60px 0;
    font-size: 5rem;
  }

  h3 {
    text-align: center;
    margin: 0 0 60px 0;
    font-size: 5rem;
  }
  
  p {
    font-size: 3rem;
    line-height: 6rem;
    margin-bottom: 20px;
  }
  
  .star-wars {
    padding: 40px;
    text-align: justify;
    margin: 0 auto;
    letter-spacing: 1.5px;
    max-width: 1080px;
    height: 800px;
    transform: perspective(200px) rotateX(14deg);
    animation: comienzo 10s linear infinite;
    animation: intro 65s linear infinite;
  }
  
  .star-wars :is(h2, p) {
    color: var(--main);
  }

  .intro {
    padding: 40px;
    text-align: justify;
    margin: 0 auto;
    letter-spacing: 1.5px;
    max-width: 1080px;
    height: 800px;
    animation: comienzo 5s linear;
    color: #4bd5ee;
  }

  .intro :is(h3) {
    color: var(--second);
    font-weight: 400;
    letter-spacing: .1em;
    opacity: 0;
  }
  
  .intro {
    position: absolute;
    top: 40%;
    left: 20%;
    z-index: 1;
    opacity: 0;
  }
  
  
  @keyframes comienzo {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      stop-color: #000000;
    }
    
  }

  @keyframes intro {
    0% {
      transform: perspective(200px) rotateX(14deg) translateY(800px);
      opacity: 1;
    }
    60% {
      opacity: 0.5;
    }
    100% {
      transform: perspective(200px) rotateX(20deg) translateY(-1000px);
      opacity: 0;
    }
  }