/* 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." */
@import url('https://fonts.googleapis.com/css2?family=Galindo&display=swap');
/* font-family: "Galindo", sans-serif; This font for site title*/
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');
/* font-family: "Jersey 10", sans-serif; This font for p and bread text*/

body {
  color: #543021;
}

p {
  font-family: "Jersey 10", sans-serif;
  font-size: 20px;
}