/* 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: #D0D2A8;
  color: #422C24;
  font-family: Verdana;
}

/* primary (horizontal) navbar */
.primary-nav ul {
  list-style-type: none;
  margin: 3px;
  padding: 10px;
  overflow: hidden;
  background-color: #BE8D63;
}

ul li {
  float: left;
}

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

ul li a:hover {
  background-color: ##D3B679;
}
/* Styling for the secondary (vertical) navbar */
#secondary-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 130px;
  background-color: #f1f1f1;
  height: 100%; /* Full height */
  position: fixed; /* Make it stick, even on scroll */
  overflow: auto; /* Enable scrolling if the sidenav has too much content */
  border: 1px solid #555555;
}

li a {
  display: block;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #555555;
}

/* Change the link and background color on hover */
li a:hover {
  background-color: #555555;
  color: white;
}
.active {
  background-color: #04AA6D;
  color: white;
}

li:last-child {
  border-bottom: none;
}