.bg-layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(128, 128, 128, 0.2); 
  z-index: 3;
}

.text-layer {
  position: fixed;
  top: 1%;
  left: 5%;
  width: 50%;
  height: 50%;
  background-color: rgba(255, 255, 255, 0); 
  z-index: 4;
}

.scanline {
  width: 100%;
  height: 100%;
  background: url(scanline.png);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.overlay {
  width: 100%;
  height: 100%;
 background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 50%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}


p {
  font-family: Century Gothic, Avenir-Light;          
  color: #000;
  font-size: 240%;
  position: fixed;
  left: 10%;
  top: 5%;
  z-index: 1;
}


