/* 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("forest.pic.jpg");
  color: #362C28;
  font-family: "Times New Roman";

}

.content {
  margin: 25px 250px 25px 250px;
  height: 700px;
  background-color: #976B74;
  border-style: outset;
  border-color: #976B74;
  border-width: 6px;
}


h1 {
  color: #DDA3B2;
  background-color: #976B74;
  margin: 25px 500px 25px 500px;;
  border-style: outset;
  border-color: #976B74;
  border-width: 6px;
  font-family: "Times New Roman";
  text-align: center;
}

h2 {
  color: #DDA3B2;
  font-family: "Times New Roman";
  text-align: center;
}













