/*
 * Hero
 */

.hero {
  display: flex;
  align-items: center;
  height: 240px;
  width: 100%;
  text-align: center;
}

.hero__background {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero__inner {
  margin: 0 auto;
  max-width: 800px;
}

.hero__title {
  color: #fff;
  font-weight: 500;
  font-size: 36px;
}

.hero__tagline {
  color: #fff;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (min-width: 500px) {
  .hero__background,
  .hero__overlay,
  .hero {
    height: 320px;
  }
}
