.dropbtn {
  background-color: #F65828;
  color: #fff;
  padding: 6px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.dropmenu {
  position: relative;
  display: inline-block;
 
}

.dropmenu-content {
  position: absolute;
  background-color: #d9d9d9;
  width: 200px;
  left: 0;
  display: none;
  z-index: 5;
}

.dropmenu-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropmenu-content a:hover {
    background-color: #f9a44f;
    text-transform: uppercase;
    font-weight: bolder;
}

.dropmenu:hover .dropmenu-content {
  display: block;
  margin-left: 20px;
}

.dropmenu:hover .dropbtn {
  background-color: #f9a44f;
  font-weight: 700;
  color: white;
}