body {
  color: #EEE;
  background-color: #222;
  font-family: 'Poppins', sans-serif;
}

@keyframes bg {
  from {background-position: 0px 0px;}
  to {background-position: 256px 256px;}
}

.header {
  text-align: center;
  margin: 12px
}

.title {
  font-size: 40pt;
}

.description {
  font-size: 16pt;
}

.image {
  width: 800px;
  height: 600px;
  margin: 0 auto;
  position: relative;
  border: 4px solid #AAA;
  background-image: url(bg.png);
  background-attachment: fixed;
  animation-name: bg;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
  transition: box-shadow 0.5s ease;
}

.image:hover {
  box-shadow: 0 12px 15px 0 rgba(0,0,0,.24), 0 17px 50px 0 rgba(0,0,0,.19);
}

.image > img {
  max-width: calc(100% - 200px);
  max-height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
  transition: box-shadow 0.5s ease;
}

.image > img:hover {
  box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
}

#fader {
  z-index: -5;
}

.nav .fa {
  width: 100px;
  height: 100%;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  color: #FFF;
  font-size: 60pt;
  text-align: center;
  line-height: 600px;
  background-color: rgba(255, 255, 255, 0.25);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}

.nav .fa:hover {
  background-color: rgba(255, 255, 255, 0.5);
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.nav #right { right: 0; }
