body, h1 {
  font-family: sans-serif;
  margin: 0;
}

.hero {
  background: url("../images/hero.jpg") center no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  text-align: center;
}
.hero:after, .hero__wrap {
  left: 0;
  position: absolute;
}
.hero:after {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  top: 0;
  width: 100%;
}
.hero__wrap {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
}
.hero__wrap h1 {
  color: #f8b500;
  font-size: 3em;
}
.hero__wrap p {
  color: #fff;
  font-size: 1.5em;
}