/* Dropdown Button */
.dropbtn {
  background-color: #b68f25;
  color: white;
  padding: 30px;
  font-size: 36px;
  border: none;
  font-weight:bold;

}

/* The container <div> - needed to position the dropdown content */

.dropdown {
  position:absolute;
  top:106px;
  left: 13.5%;
  transform: translate(-50%);
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  text-align: center;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
  font-size: 35px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 18px 58px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #c2ac70;}

@media only screen and (min-width:1000px){

/* Dropdown Button */
.dropbtn {
  background-color: #b68f25;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  font-weight:bold;

}


/* The container <div> - needed to position the dropdown content */

.dropdown {
  position:absolute;
  top:30px;
  left: 10%;
  transform: translate(-50%);


}
.dropdown-content {
  display: none;
  position: absolute;
  text-align: center;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
  font-size: 17px;
}
  .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
}