/**
How to make Multi-Layered Parallax Illustration with CSS & Javascript
https://medium.com/@PatrykZabielski/how-to-make-multi-layered-parallax-illustration-with-css-javascript-2b56883c3f27
*/
/**
http://www.firewatchgame.com/
*/
#parallax {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background-color: #ffaf1b;
}
#parallax .layer {
  position: fixed;
  width: 100%;
  height: 1000px;
  background-position: bottom center;
  background-size: auto 1038px;
  background-repeat: no-repeat;
}
#parallax #layer-8 {
  position: absolute;
  background-repeat: repeat-x;
}

#layer-0 {
  background-image: url("./img/parallax0.png");
}

#layer-1 {
  background-image: url("./img/parallax1.png");
}

#layer-2 {
  background-image: url("./img/parallax2.png");
}

#layer-3 {
  background-image: url("./img/parallax3.png");
}

#layer-4 {
  background-image: url("./img/parallax4.png");
}

#layer-5 {
  background-image: url("./img/parallax5.png");
}

#layer-6 {
  background-image: url("./img/parallax6.png");
}

#layer-7 {
  background-image: url("./img/parallax7.png");
}

#layer-8 {
  background-image: url("./img/parallax8.png");
}

main {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  background: #210002;
  color: #ffaf00;
}

.content {
  max-width: 900px;
  min-height: 900px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  font-size: 220%;
  font-style: italic;
  letter-spacing: 10px;
  font-family: 'Lora', serif;
}
h2 span {
  font-size: 66%;
}
p {
  text-align: justify;
  font-size: 1.2em;
  color: white;
  font-family: 'Literata', serif;
  letter-spacing: .1em;
  line-height: 2em;
}