/* menu.css */

.Menu {
  background: #4A4839;
  border: 3px solid white;
  border-left: 0;
  border-right: 0;
}

.Menu ul {
  list-style-type: none;
}
.Menu ul li {
  display: inline;
}

.Menu ul li a {
  color: #EFE3C7;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 17px;
  line-height: 30px;
}

.Menu ul li a:hover {
  color: white;
  background: #037552;
  padding: 7px 17px;
}