/* 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." */
   
   /*
   Colour palette:
   7BAE7F light green
   F7F7FF white
   214E34 dark green
   0C1D13 darker green (black)
   247BA0 teal/aqua
   CC7E85 rose
    */

body {
  background-color: #7BAE7F;
  color: #0C1D13;
  font-family: Tahoma, Monospace, sans-serif;
}