/* 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-color: #EAF3A3;
  color: #4C2716;
  font-family: 'Arial', sans-serif;
  margin-right: 8%;
  margin-left: 8%;
}
img {
    width: 55%;
    height: 0%;
}
#header {
  background-color: #D6E08E;
  border: 2px dotted;
  border-color: black;
  color: #4C2716;
  padding: 0px 10px 0px 10px;
  width: 90%;
  margin: 25px 25px 10px 45px;
  text-align: center;
}
h1 {
  color: #4C2716;
  font-family: 'Arial', sans-serif;
}
p {
  color: #4C2716;
  font-family: 'Arial', sans-serif;
}
#content {
  color: #4C2716;
  font-family: 'Arial', sans-serif;
  margin-right: 6%;
  margin-left: 6%;
}
#footer {
  background-color: #4C2716;
  border: 2px dotted;
  border-color: white;
  color: white;
  padding: 0px 10px 0px 10px;
  width: 90%;
  margin: 25px 25px 10px 45px;
  text-align: center;
}