* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
}

.wrapper {
  height: 100vh;
  width: 100%;
  background-image: url("images/hero.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
}

.content {
  text-align: center;
  color: white;
  text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2),
    0px -5px 35px rgba(255, 255, 255, 0.3);
}

.content h2 {
  font-size: 4rem;
}

@media (min-width: 992px) {
  .content h2 {
    font-size: 6rem;
  }
}

@media (min-width: 1200px) {
  .content h2 {
    font-size: 8rem;
  }
}
