body {
  background-color: #000;
  color: #00ff00;
  font-family: monospace;
}
h3 a {
    color: #00ff00;
    text-decoration:  none;
}
/* Unvisited Link */
a:link {
  color: #E5FFD1;
}

/* Visited Link */
a:visited {
  color: #ABFF69;
}

/* Mouse over Link */
a:hover {
  color: #075700;
}

/* Link at the moment of click */
a:active {
  color: red;
}
.glitch-link.glitching {
  color: red !important;
}
  table {
    border-collapse: collapse; /* Merges borders */
    width: 100%; /* Makes table full width */
    margin: 10px auto; /* Centers table on page */
  } /* (just did the last four lines with google */

  th, td {
    border: 1px solid #00ff00;
    padding: 12px 15px;
    text-align: left; 
  }

  th {
    background-color: #000; /* box thingy bg's */
    color: #00ff00; /* text colors */
  }
  th:hover {
    background-color: #00ff00 !important; /* Highlights row on hover */
    color: #000
  }
    ul li {
    margin-bottom: 20px; /* absolutly useless -_- */
    }