/*
-- Padrões e Reset
*/
* {margin: 0; padding: 0;}
ul {list-style-type: none;}
img, fieldset {border: 0;}
h1, h2, h3, h4, h5, h6 {font-weight: normal;}

/*
-- Corpo principal
*/
body {
  background-image: url('/static/img/intro/deepspace.png');
  overflow: hidden;
  background-size: 100vw 100vh;
}

/*
-- Prelúdio inicial
*/
#prelude {
    opacity: 0;
    color: #d6d4d9;
    text-align: center;
    margin-top: 25%;
    font-family: 'Pathway Gothic One', sans-serif;
    text-shadow: 0 0 1px #1B7DEB;
    font-size: 20px;

    /* animação do prelúdio */
    animation: prelude 7s linear forwards;
}

@keyframes prelude {
  from { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  to { opacity: 0; }
}

/*
-- Primeira fase
*/
#inicio {
  margin: 5em;
  display: block;
  text-align: center;
  padding: 10px;
  color: blue;
}

#inicio .title {
  width: 100%;
  text-align: center;
}

#inicio .title h1:before,
#inicio .title h1:after {
  display: inline-block;
  margin: 0 20px 8px 0;
  height: 3px;
  content: " ";
  width: 140px;
  text-shadow: none;
  background-color: blue;
}

#inicio .title h1:after {
  margin-left: 20px;
}

.botao {
  margin-top: 2em;
  position: relative;
  border: 2px solid blue;
  border-radius: 5px;
  top: 50%;
  left: 32%;
  width: 25em;
  height: 2em;
  cursor: pointer;
}

.parar {
  margin-top: 2em;
  position: relative;
  left: -0.5%;
}

/*
-- Terceira fase: Star Wars Crawl
*/
.fade {
  position: relative;
  width: 100%;
  min-height: 60vh;
  top: -25px;
  background-image: linear-gradient(0deg, transparent, black 75%);
  z-index: 1;
}

.star-wars {
  display: flex;
  position: relative;
  height: 800px;
  color: #feda4a;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 500%;
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  perspective: 400px;
  text-align: justify;
}

.crawl {
  position: relative;
  top: 99999px;
  transform-origin: 50% 100%;
  animation: crawl 120s linear;
}

.crawl .title {
  font-size: 90%;
  text-align: center;
}

.crawl .title h1 {
  margin: 0 0 100px;
  text-transform: uppercase;
}

@keyframes crawl {
  0% { top: 200px; transform: rotateX(20deg) translateZ(0); }
  95% { top: -12000px; transform: rotateX(22deg) translateZ(-4500px); }
  100% { top: -12000px; transform: rotateX(30deg) translateZ(-4500px); }
}

/*
-- Overlay da imagem final
*/

#prelude-final{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);

    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* #prelude-final{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);

    justify-content:center;
    align-items:center;

    z-index:9999;
} */

#prelude-final img{
    max-width:100vw;
    max-height:100vh;
}

/* Responsive */

@media (max-width: 768px){

  .star-wars{
    font-size: 220%;
    height: 600px;
    perspective: 300px;
  }

  .crawl{
    line-height: 140%;
    letter-spacing: 3px;
  }

  #prelude{
    font-size: 8vw;
    margin-top: 40%;
  }

  #prelude-final img{
    max-width: 95vw;
    max-height: 80vh;
  }

}

@media (max-width: 480px){

  .star-wars{
    font-size: 160%;
    height: 500px;
  }

  .crawl{
    letter-spacing: 2px;
  }

  #prelude{
    font-size: 10vw;
  }

}

@media (max-width: 1024px){

  .star-wars{
    font-size: 320%;
    height: 700px;
  }

  #prelude{
    font-size: 6vw;
  }

}
