@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
  --font-main: 'VT323', monospace;
  --background-color: #121212;
  --text-color: #fbfbf6;
  --link-color: #fbfbf6;
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1.4;
  margin: auto;
  max-width: 800px;
  padding: 20px;
  text-align: left;
  /* CRT glow effect */
  text-shadow: 0 0 3px rgba(255,255,255,0.6);
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

img {
  image-rendering: pixelated; /* makes images look 1-bit */
  max-width: 100%;
}
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 2px
  );
  pointer-events: none;
}
