/* 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-image: url(bg.png);
  color: black;
  font-family: Courier;
}

h1{
  background-color: #f9a822;
  color: #3a5c43;
  
}

p{
  background-color: #f9a822;
  color: #3a5c43;
  background-size: cover;
  /* this piece of thing doesnt work see guys i tried to make the text background not stretch into eternity i hate it here honestly u.u */
}

li{
  background-color: #faecb6;
  color: #764838;
}