body {
  background-image: url("/assets/images/background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  background-color: white;
  color: #151515;
  height: 100vh;
}

.v-center {
  text-align: center;
  height: 100%;
  font-size: 0;
}

.v-center::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.v-center .v-center-content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

p {
  font-size: 0.9rem;
  color: #858585;
}

h1, p {
  -webkit-transition: font-size 500ms ease;
  transition: font-size 500ms ease;
}

@media screen and (min-width: 40em) {
  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 1.2rem;
  }
}