@font-face {
  font-family: "Pixeboy";
  src: url("Pixeboy.ttf") format("TrueType");
}

.scanlines {
  position: relative;
  overflow: hidden;
}
.scanlines:before, .scanlines:after {
  display: block;
  pointer-events: none;
  content: "";
  position: absolute;
}
.scanlines:before {
  width: 100%;
  height: 2px;
  z-index: 2147483649;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.75;
  -webkit-animation: scanline 6s linear infinite;
          animation: scanline 6s linear infinite;
}
.scanlines:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483648;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
  background-size: 100% 4px;
  animation: scanlines 1s steps(6) infinite;
}

/* ANIMATE UNIQUE SCANLINE */
@-webkit-keyframes scanline {
  0% {
    transform: translate3d(0, 200000%, 0);
  }
}
@keyframes scanline {
  0% {
    transform: translate3d(0, 200000%, 0);
  }
}
@-webkit-keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}
@keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}

ul {
  display: inline-block;
  margin: 0;
  list-style-type: none;
  padding: 0;
}
ul.scanlines {
  position: absolute;
}
ul iframe,
ul video,
ul .jpg {
  width: calc(100vw - 20px);
  height: calc(100vh - 20px);
  border: none;
}

.vignette {
  box-shadow: 0 0 200px rgba(0,0,0,0.9) inset;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
}

.jpg {
  background: url("pixel.gif") no-repeat;
  background-size: cover;
}

body {
  position: relative;
  background: #1b1b1b;
  color: #c8c8c8;
  text-shadow: 2px 2px 2px #333;
}

li#empty {
  font-family: "Pixeboy";
  font-size: 60pt;
  position: absolute;
  top: 45vh;
  left: 50vh;
}

@media screen and (max-width: 1500px) {
li#empty {
 left: 25vw;
 top: 45vh;
}
}
@media screen and (max-width: 1050px) {
li#empty {
 left: 10vw;
 top: 25vh;
}
}
@media screen and (max-width: 600px) {
li#empty {
 left: 5vw;
 top: 25vh;
}
}