#cover-header {
    position: absolute;
    left: 20%;
    top: 100px;
    z-index: 1;
}

@media screen and (max-width: 600px) {
  #cover-header {
    left: 10%;
    top: 50px;
  }
}

/* Dropdown Button */
/*
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
*/

/* Dropdown button on hover & focus */
/* .dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}
*/

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  min-width: 160px;

  z-index: 1;

}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  margin-top: 5px;
  background-color: white;
  border-radius: 20px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  color: white;
  background-color: rgb(252, 165, 93);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}