* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  height: 600vh;
}
body .Img_Box {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  position: fixed;
}
body .Img_Box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
body .Box {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: red;
  background: linear-gradient(rgba(0, 0, 0, 0.509), rgba(0, 0, 0, 0.172)), url(./2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  top: 0;
  position: fixed;
}
body .Box h1 {
  text-align: center;
  color: white;
  position: absolute;
  font-size: 140px;
  text-shadow: 0 15px 20px rgba(0, 0, 0, 0.537);
  transform: translateY(-25px) scale(0.5);
}
@media (min-width: 320px) and (max-width: 768px) {
  body .Box h1 {
    font-size: 40px;
  }
}/*# sourceMappingURL=style.css.map */