/* 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: #f3e5ab; /* A nice "cheesy" pale yellow */
  color: #4a2c2a;            /* A deep brown, like Branston pickle */
  font-family: 'Trebuchet MS', sans-serif;
  padding: 40px;             /* Adds some breathing room around the edges */
  line-height: 1.6;          /* Makes the text easier to read */
}

h1 {
  color: #8b0000;            /* A bold dark red for your heading */
  border-bottom: 2px solid #4a2c2a;
}

a {
  color: #006400;            /* Dark green links */
  font-weight: bold;
}