
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the triggering button */
.dropbtn {
  
  font-size:20px;
  font-family: "Mystery Quest", system-ui;
  color: #3b3b3b;
  border: none;
  cursor: pointer;
  margin-left: -6px;
}


/* Hide the dropdown menu links by default */
.dropdown-content {
  font-size: 20px;
  display: none;
  position: absolute;
  background-color: #f7f1d2;
  width: 100px;
  padding:10px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    opacity: 0.8;

  color: black;
  text-decoration: none;
  display: block;
}

/* Add a hover background color for links */
.dropdown-content a:hover {
  background-color: #ccc1a7;
font-size: 25px;
}

/* Show the menu when hovering over the container */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the button color when open */
.dropdown:hover .dropbtn {
  background-color: #2980b9;
}
