
.dropbtn {
  background-color: #e64442;
  color: white;
  padding: 16px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #e64542c8;
}

.dropdown {
  position: fixed;
  top: 2%;
  left: 2%;
  z-index: 999;
  top: -55px;
  transition: top 1s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-transform: uppercase;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}