/* Dropdown Button */
.menu-dropbtn {
  background: none;
  color: #F5EFDF;
  padding: 8px 8px 8px 32px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #818181;
  text-decoration: none;
  font-family: sans-serif;
}

/* Dropdown button on hover & focus */
.menu-dropbtn:hover {
  color: #F5EFDF;
}

/* The container <div> - needed to position the dropdown content */
.drop-menu {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.drop-content {
  padding: 8px 8px 8px 32px;
  display: none;
  position: static;
  background: none;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.drop-content a {
  color: #818181;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-family: sans-serif;
}

/* Change color of dropdown links on hover */
/* .drop-content a:hover {background-color: #ddd;} */

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}