@font-face {
  /* A cozy VT320 (text terminal) font by Peter Hull */
  font-family: vt323;

  /* Full font: https://fonts.google.com/specimen/VT323 */
  src: url(/fonts/vt323_pared.woff2?v1) format('woff2');
}

* {
  /* Sorry, user agents, but everything must be pixely */
  font-family: vt323 !important;

  /* Always use our font's own letterforms */
  font-weight: 400 !important;
  font-style: normal !important;

  /* All text must be the same size */
  font-size: 18px !important;
}

:root {
  --blue: #00d1ff;
  --pink: #ff00a0;
  --aside-color: #a0a0a0;
  --horizontal-margin: 1rem;
}

body {
  background: black;
  line-height: 1.1;
  color: #dadada;
}