/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #151718;
  color: #c5c8c6;
  font-family: Arial;
}

/*SO BASSICALLY THAT SECTION DOWN THERE IS FOR LINKS, MAY NEED OTHER LINK STUFF LATER FOR PURPLE LINKS!!!*/
/* General link color for all states */
a {
  color: #5f89ac;
  text-decoration: none; /* Optional: removes the default underline */
}

/* Color for unvisited links */
a:link {
  color: #5f89ac;
}

/* Color for visited links */
a:visited {
  color: #5f89ac;
}

/* Color when a user hovers over the link with their mouse */
a:hover {
  color: #5f89ac;
}

/* Color for the moment the link is clicked */
a:active {
  color: #5f89ac;
}