/* Make all text look like terminal text */
body, p, div, span, a, li, pre, code {
  font-family: 'Fira Mono', 'Source Code Pro', Consolas, 'Courier New', monospace; /* modern terminal stack */
  font-size: 14px;       /* small, compact size */
  line-height: 1.2;      /* tight spacing for terminal feel */
  color: #000000;        /* black text */
  background: none;      /* no background */
  text-decoration: none; /* remove link underlines unless desired */
/*  margin: 0px; */
}

/* Subtle link styling */
a {
  color: #0000ee;
}

a:hover {
  color: #551a8b;
}
