/* 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: #1a1a2e; /* A dark, deep blue/purple */;
  color: #00ffaa;           /* A bright neon green */;
  /* Change the font-family line to one of these: */
    font-family: Arial, sans-serif; /* For a clean, modern look */
}