/* 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: #fff8dc;  /* soft cream */
}


/* Header styling */
h1 {
  color: #4B2E2E;             /* brown */
  text-align: center;         /* center align */
  font-family: 'Festive', cursive; /* Festive font */
  margin-top: 50px;
  font-size: 70px;
}

/* Paragraph styling */
p {
  max-width: 600px;
  margin: 10px auto;
  font-family: Garamond, serif;
  font-size: 18px;
  line-height: 1.5;
}

ul, ol {
  max-width: 600px;
  margin: 10px auto;
  font-family: Garamond, serif;
  font-size: 18px;
  line-height: 1.5;
}

.right-image {
  float: right;       /* keeps it on the right */
  width: 150px;       /* sets the width */
  height: auto;       /* keeps the aspect ratio */
  margin: 10px;       /* space around the image */
}

