.navbar {
  overflow: hidden;
  background-color: #000;  
  font-family: "Roboto Condensed", sans-serif;
}

.navbar a {
  float: left;
  font-size: 16px;
  font-weight: bold;  
  width: 16%;              
  color: white;
  text-align: center;
  padding: 14px 0px;   /* 14px 16px */
  text-decoration: none;
}
 
.dropdown {
  float: left;
  overflow: hidden;
  text-align: center;   
  width: 16%;            
}

.dropbtn {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold; 
  width: 100%;      
  border: none;
  outline: none;
  color: white;
  padding: 14px 0px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropbtn:hover {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 16%;             
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 0%;        /* */
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;                /* */
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

@media (max-width: 600px) {
.navbar a {
  font-size: .8em;
  font-weight: 700;
  width: 33%;
  }
.dropbtn {
  font-size: .8em;
  font-weight: 700;
  }
.dropdown, .dropdown-content {
  width: 33%;
  }
.dropdown-content a {  
  width:100%;  
}

@media (min-width: 601px) and (max-width: 1000px) {
.navbar a {
  font-size: .8em;
  font-weight: 700;
  }
.dropbtn {
  font-size: .8em;
  font-weight: 700;
  }
}
