/* 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: white;
  color: black;
  font-family: Verdana;
}

/* Target ALL links (a) that are NOT hovered over or visited */
a:link, 
a:visited {
    text-decoration: none; /* Removes the underline */
    color: white;          /* Changes text color to white */
}

/* Optional: Add hover/focus effects to show it's clickable */
a:hover,
a:focus {
    color: darkred;        /* Changes color slightly when the user hovers over it */
}
