* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 105vw;
}


.parallax-wrapper {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
  background-color: black;
}

.parallax-group {
  position: relative;
  width: 100vw;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.parallax-layer--back {
  transform: translateZ(-1px) scale(2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-layer--base {
  transform: translateZ(0);
  margin: 10vh 5vw;
  border-radius: 8px;
  z-index: 1;
}