/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #c8c8c8;
  font-family: Arial;
     display:flex;
     justify-content:center;
	width: 1000px;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 14px;
  color: black;
  text-align: left;
  padding: 10px 14px;
  text-decoration: none;
}

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

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

/* Add a white background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #c8c8c8;
  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: black;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
 
.menu ul li a:hover, .menu ul li a:focus, .menu ul li a:active  {
    color: #777;
    background: CornflowerBlue;
}
 
.menu-arrow {
    font-size: 10px;
}