/* Container for the dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the button that opens the dropdown */
.dropbtn {
  background-color: #FFFFFF;
  color: #3a3a3a;
  padding: 5px;
  border: none;
  cursor: pointer;

  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
}

/* Dropdown Content (Hidden by Default) #3a3a3a */    
.dropdown-content {
  display: none; /* Hide the menu initially */
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;}

/* Show the dropdown menu when a class is added by JavaScript */
.show {display: block;}