/* Credit to W3schools*/ 

/* Dropdown Button */
.dropbtn {
  background-color: #330;
  color: white;
  padding: 16px;
  font-size: 16px;
}

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

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #330;
  min-width: 160px;
  z-index: 1;

}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 8px 8px;
  text-decoration: none;
  display: block;
  border-style: solid;
  border-color: gold;
  border-width: 1px;
  margin-right: 0px;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}
