/* Dropdown Button */
.dropbtn {
  background-color: black ;
  color: gold;
  position: fixed;
  top : 2em;
  right : 0.1em;
  padding: 4px 6px;
  max-width: 75px ;
  max-height: 75px ;
  opacity: 0.6; 
  font-size: 12px;
  border : white solid 2px;
  cursor: pointer;
  z-index: 14;
  }

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: darkgreen;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: fixed;
  display: inline-block;
  float: right ;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  background-color: black;
  color: gold;
  border : white solid 2px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-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;}