/* 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: black;
  color: white;
  font-family: "Comic Sans MS", "Comic Sans", cursive;

  /* Left-aligning content */
  text-align: left; /* aligns all text and inline elements to the left */
  margin-left: 20px; /* optional: adds a little space from the left edge */
}

<style>
  .anomaly {
    display: inline-block; /* makes them line up horizontally */
    margin-right: 40px;    /* space between each item */
  }

  body {
    background-color: black;
    color: white;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    text-align: left;
    margin-left: 20px;
  }
</style>

<div clas

a {
  color: #0000FF; /* bright blue link color */
  text-decoration: none; /* removes underline (optional) */
}

a:hover {
  color: #111184; /* lighter blue when hovered */
  text-decoration: underline; /* show underline on hover (optional) */
}

a:visited {
  color: #0000FF; /* keep visited links blue (prevents purple color) */
}

