/* 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: #c1e1c1;
  color: black;
  font-family: Verdana;
}

p {font-size: 1em;}

div.main-content {margin: auto; width: 91%;}

header {border: 3px solid; border-style: none none solid none; border-color: #5C4033;}

h1 {font-weight: normal; font-family: Open Sans;}

/*menu*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

ul li {
  float: left;
  border-right:1px solid #bbbbbb;
}

ul li:last-child {
  border-right: none;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover:not(.active) {
  background-color: #7B3F00;
}

ul li a.active {
  background-color: #04AA6D;
}