* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 100px;
}
.wrapper .div-3d {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transform-style: preserve-3d;
  z-index: -1;
}
.wrapper .div-3d .sky {
  transform: translateZ(-100px) scale(2);
}
.wrapper .div-3d .forest {
  transform: translateZ(-50px) scale(1.5);
}
.wrapper .div-3d .sky, .wrapper .div-3d .forest {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.wrapper .div-3d h1 {
  font-size: 100px;
  color: white;
  text-shadow: 4px 4px black;
  letter-spacing: 5px;
}

.content {
  height: 100vh;
  background-color: white;
  font-size: 30px;
  padding: 20px;
  text-align: justify;
}

/*# sourceMappingURL=style.css.map */
