/* Navbar container */
.navbar {
  background-color: #333;
  font-family: Courier;
  position: -webkit-fixed;
  position: fixed;  
  top:0;
  width:201px;
  border: 4px solid #cd5c5c;
}

/* Links inside the navbar */
.navbar a {
  font-size: 17px;
  color: white;
  text-align: center;
  padding: 18px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 19px; 
  border: none;
  outline: none;
  color: #FF8C00;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color:#000000;
  color: #feb236;
  font-weight: 900;
}


/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color:#FFE4E1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #DE3163;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight:bold;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color:#D3D3D3;
  color:#006400;
  font-weight:bold;
}

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



