
html,
body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
 
}

.parallaxBg {
  background-image: url(https://mortdraws.neocities.org/parallax/paralax%20background.jpg);
  /* full height */
  height: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parent{
  position:relative;

}

.parallaxMid {
  position: absolute;
  z-index: 1;
  width: 100vw
}
.parallaxFront{
  position: relative;
  z-index: 2;
  overflow:scroll;
  width:100vw;
}
