/* 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." */
h1 {
  margin: 0;
  padding: 20px 0;
  color: #00539f;
  text-shadow: 3px 3px 1px black;
}


p,
li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}


html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 15px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: "tinos", serif;
}

html {
  background-color: #90E3E1;
}

body {
  width: 600px;
  margin: 0 auto;
  background-color: #E6A1F0;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.done {
  color: darkseagreen;
  text-decoration: line-through solid black 2px;
}























