*,
*::before,
*::after {
  box-sizing: border-box;
  margin:0;
}

body {
  font-family: 'Julius Sans One', sans-serif;
}

.heroEffects {
  height: 100vh;
  position: relative;
  z-index: -1;
  top: 0;
  left: 0;
}
.heroEffects .bg {
  height: 100vh;
  position: fixed;
  width: 100%;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/30256/jungleBG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
}
.heroEffects .shade {
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  height: 100vh;
  position: fixed;
  width: 100%;
}
.heroEffects .title {
  width: 100%;
}
.heroEffects .title .text {
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.5);
}
.heroEffects .arrow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  opacity: 1;
}

.centerV {
  display: table;
  height: 100%;
}
.centerV > div {
  display: table-cell;
  vertical-align: middle;
}

h1 {
  font-size: 5rem;
  margin-bottom: 0.1em;
  line-height: 1;
  color: #fff;
}

p {
  font-family: 'Nixie One', sans-serif;
  width: 60%;
  margin: 0 auto;
  line-height: 1.5;
  padding: 1rem 2rem;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.015em;
  display: block;
  color: #fff;
}

.content {
  height: 100vh;
  background-color: #000;
}

.bouncy {
  animation: bouncy 1.5s infinite;
}

@keyframes bouncy {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-.5rem);
  }
}