html, body, ul {
  margin: 0;
  padding: 0;
  color: white;
  font-family: 'Open Sans', sans-serif;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  margin-bottom: 1.5em;
}

.landing-outer-wrapper {
  display: table;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #14222d;
  background-size: cover;
  background-repeat: no-repeat;
}

.landing-inner-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.landing-centered {
  margin: 0 auto;
  width: 960px;
}

.landing-centered h1, .landing-centered ul {
  color: white;
  text-align: center;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0;
}

@media (max-width: 960px) {
  .landing-centered {
    width: 100%;
    height: 160px;
  }

  .landing-centered h1 {
    font-size: 4.5em;
  }
}

@media (max-width: 640px) {
  .landing-centered {
    width: 100%;
    height: 160px;
  }

  .landing-centered h1 {
    font-size: 3em;
  }
}

@media (hover: none) {
  .landing-inner-wrapper {
    transform: translateY(-10%);
  }
}
