body {
  background-color: #16161d;
  color: #a7a0ab;
}

/* WCAG contrast stuff
background of 16161d
contrasting colors:
71a1ff  headings
a7a0ab  text
6175ef  subheadings
fb802c  links
  untested:
    #fbf236 hover (bright yellow)
		#8f563b visited/active (subdued orange)

passes AA, AAA, and Color blindness check
*/

/*PIXELART*/
img {
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}