/* if you do not have this, you will see a
vertical scrollbar on the .parallax div */
body {
  margin: 0;
  background-color: black;
}

.parallax {
  height: 100vh;
  overflow-x: hidden;

  perspective: 1px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.layer1 {
  transform: translateZ(0);
}

.layer2 {
  transform: translateZ(-1px);
}

.layer3 {
  transform: translateZ(-2px);
}


.layer4 {
  transform: translateZ(-4px);
}


.layer5 {
  transform: translateY(-10px);
}


/* specific to this implementation */
div {
  font-size: 50px;
  text-align: center;
}
.item{
width: 50%;
background-color: none;
}

.item img{
  width: 100%;
  margin: 10px;
  overflow: none;

}

.itemlarge{
width: 100%;
background-color: none;

}

.itemlarge img{
  width: 100%;
  margin: 10px;
  overflow: none;
}

.parallax-layer.layer1 {
  width: 100%;
  height: 100rem;
  background-color: black;
}

.parallax-layer.layer2 {
  top: 10rem;

  width: 100%;
  height: 50rem;

  background-color: none;
}

.parallax-layer.layer3 {
  top: 20rem;

  width: 100%;
  height: 50rem;
}

.parallax-layer.layer4 {
  top: 20rem;

  width: 40%;
  height: 50rem;
  border-style: dashed;
  color:white;
  background-color: none;
}


.parallax-layer.layer5 {
  top: 20rem;

  width: 40%;
  height: 50rem;
background-color: none;
border-style: dashed;
color:white;
}


nav {
  position: fixed;
  z-index: 2;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid #373737;
  /* ⌄ ⌄ ⌄ blur property ⌄ ⌄ ⌄ */
  backdrop-filter: blur(5px);
}
