/*https://www.w3schools.com/howto/howto_css_dropdown.asp */

.menu-mobile {
  /*margin: 3px;*/
  padding: 0px;
  list-style-type: none;
  position: absolute;
  margin-top:5px;
  right: 20px;
  width: auto;
  background-color: #79853a;
}

.menu-item {
  padding: 0px;
  margin: 0px;
  width: auto;
  left: 0px;
  list-style-type: none;
  text-align: left;
}

.menu-item a:link {
      display: block;
      border: 0px solid #000;
      background-color: #79853a;
      padding: 3px;
      color: #000;
      font-family: Arial, Helvetica, sans-serif;
      text-decoration: none;
      font-weight: bold;
}

.menu-item a:hover {
      display: block;
      border: 0px solid #54993f;
      background-color: #727165;
      color: #fff;
}

.menu-item2 {
  padding: 0px;
  margin: 5px;
  width: 20%;
}

.menu-item2 a:link {
  display: block; /* Make the links appear below each other */
  border: 1px solid #000;
  background-color: #79853a;
  padding: 10px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none; /* Remove underline from links */
}

.menu-item2 a:hover {
  display: block;
  border: 1px solid #54993f;
  background-color: #727165;
  color: #fff;
}



.menu-horiz {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  margin: 3px;
  padding: 3px;
  margin-left: auto;	/* statt text-align:center ! */
	margin-right: auto;
	text-align: center;
}

.menu-horiz a {
  display: inline-block;
  color: white;
  margin-left: auto;	/* statt text-align:center ! */
	margin-right: auto;
	text-align: center;
  padding: 14px;
  text-decoration: none;
}

.menu-horiz a:hover {
  background-color: #777;
}