body {
  background-color: black;
  background-image: radial-gradient(
    rgba(0, 150, 0, 0.75), black 120%
  );
  height: 100vh;
  color: white;
  font: 1.3rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
}
body::after {
  //content: "";
  //position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    0deg,
    rgba(black, 0.15),
    rgba(black, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
}

::selection {
  background: #0080FF;
  text-shadow: none;
}

a{
  height: 100vh;
  color: white;
  font: 1.3rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;	
  text-decoration: underline;	
	
	
}



span {
  text-shadow: 0 0 5px #C8C8C8
  color: transparent;
  &:focus {
      outline: none;
  }
}

[contenteditable]:focus {
    outline: 0px solid transparent;
}