/* 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." */
html {
  font-size: 13px; /* px means "pixels": the base font size is now 10 pixels high */
  font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
  text-align: center;
  background-color: #f7eee8;
}
h1 {
  font-size: 60px;
  text-align: center;
}

p,
li,
UL{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
  list-style-position: inside;
}