/* parallax.css Copyright (C) 2018 - 2024 All Rights Reserved. */

.MainContainer {
  height: 100vh;
  perspective: 1px;
  transform-style: preserve-3d;
  overflow-x: hidden;
  overflow-y: scroll;
}

.ParallaxContainer {
  display: block;
  position: relative;
  height: 100%;
  transform: translateZ(-1px) scale(2.02);
  z-index: -1;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  background-image: url("../images/parallax.jpg")
}

.ContentContainer {
  display: block;
  position: absolute;
  top: 30%;
  z-index: 1;
  width: 100%;
  background-image: url("../images/bg.jpg")
}
