html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
}
.hero {
  display: grid;
  position: relative;
  width: 100vw;
  height: 100vh;
  place-items: center;
  overflow: hidden;
}
.hero__bg, .hero__cnt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(41, 4, 47, 0.4);
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__cnt {
  z-index: 2;
  color: #FFF;
  font-size: 2.5vw;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
