.hero {
  padding: 0px;
  max-width: none;
  position: relative;
  width: 100%;
  height: 80vh;
  background-color: black;
  background-image: url('media/hero-image.jpeg');
  background-size: cover;
  background-position: 0% 80%;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  z-index: 1;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-weight: 900;
  letter-spacing: 2px;
  font-style: normal;
  letter-spacing: 5px;
  font-size: 4.5rem;
  font-family: "Alumni Sans", Arial;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero-title-strong {
  color: rgb(228, 83, 47);
}