.main {
  background-image: url(/img/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main::before {
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: black;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
}
.main .content {
  position: relative;
  z-index: 1;
  color: white;
  font-family: sans-serif;
}/*# sourceMappingURL=style.css.map */