body {
  background: #000000;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

a { color: #ff00ff; }
a:visited { color: #888888; }
a:hover { color: #ffffff; }

table {
  border-collapse: collapse;
}

img {
  image-rendering: pixelated;
}

/* blink animation for fun */
blink {
  animation: blinker 1s step-end infinite;
}
@keyframes blinker {
  50% { opacity: 0; }
}

/* scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #00ff00; }
