.navigation {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding-top: 8px;
  background-color: #ffffff; /* white background */

  border-bottom: 5px solid #478ac9;
}

/* https://www.w3schools.com/howto/howto_css_dropdown_navbar.asp */

/* Navbar container */
.navbar {
  overflow: hidden;
  font-family: Arial;
  text-align: center;
}

/* Links inside the navbar */
/* .dropdown_link { */
.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 10px 10px; /* setting how wide the highlight is */
  text-decoration: none;
  margin: 0; /* Setting padding between links and dropdowns */

  font-weight: bold;
}

/* The dropdown container */
.dropdown {
  float: center;
  overflow: hidden;
  display: inline-block;
}

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

/* Add a blue background color to navbar links on hover */
.navbar a:hover {
  color: white;
  background-color: #77aad9;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;

  /* Having both these un-commented means that the dropdown spans the width of the page */
  /* left: 0; */
  /* right: 0; */

  background-color: #f9f9f9;
  /* min-width: 50px; */
  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 !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

/* 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;
}

.highlighted-dropdown {
  float: left;
  font-size: 16px;
  color: white !important;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  background-color: #478ac9;
}

.center-contents {
  display: flex;
  justify-content: center;
}
