.dropbtn {
  background-color: rgba(53, 75, 107, 1);
  color: white;
  width: 120px;
  padding: 7px;
  font-size: 12px;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
  top: -3px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(81, 112, 159, 1);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  left: -20px;
  top: 29px;
}

.dropdown-content a {
  color: white;
  background-color: rgba(81, 112, 159, 0.95);
  padding: 6px;
  text-decoration: none;
  display: block;
  font-size: 12px;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  border-style: solid;
  border-color: #3B5265;
  border-width: 0px 2px 2px 2px;
}

.dropdown-content a:hover {
  background-color: rgba(53, 75, 107, 1);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: rgba(81, 112, 159, 0.95);
}