html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
body {
  background-color: black;
  color: #ccc;
  font-family: 'Retro';
  font-size: 1.0rem;
}
.noCursor {
  cursor: none;
}
.scanlines {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
 .scanlines::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 4px, 4px 100%;
  pointer-events: none;
}
* {
	box-sizing: border-box;
}

@font-face {
  font-family: Main;
  src: url(./src/fonts/main.ttf);
}
@font-face {
  font-family: Title;
  src: url(./src/fonts/title.otf);
}
@font-face {
  font-family: Alien;
  src: url(./src/fonts/alien.ttf);
}
@font-face {
  font-family: Retro;
  src: url(./src/fonts/retro.ttf);
}

#game {
  position: absolute;
/**/
  width:  100%;
  height: 100%;
/**/
  image-rendering: pixelated;
  background-color: rgb(0,0,0,1);
}
