/* Navbar container */

.container {
  position: relative;
  margin: 0px;
  width: 100%;
}
.navbar {
  overflow: hidden;
  background-color: navy;
  font-family: Arial;
}

.date {overflow: hidden;
  background-color: navy;
  font-family: Arial;
 float: right;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 font-size: 20px;
 font-weight:bold;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 font-size: 20px;
 font-weight:bold;

}

.navbar a:hover 
{  background-color: navy;
   color: aqua;
}

.bottombar {
  overflow: hidden;
  background-color: navy;
  font-family: Arial;
  position: absolute;
  bottom: 0;
  width: 99%;
}

/* Links inside the bottom bar */
.bottombar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 font-size: 20px;
 font-weight:bold;

}

.email {overflow: hidden;
  background-color: navy;
  font-family: Arial;
  float: right;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 font-size: 20px;
 font-weight:bold;
} 

.bottombar a:hover 
{  background-color: navy;
   color: aqua;
}

.navbar a:hover .dropdown:hover .dropbtn:hover {
  background-color: navy;
   color: aqua;
}

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

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 20px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
 font-size: 20px;
 font-weight:bold;
   Width:25%; 
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0px; /* Important for vertical align on mobile phones */
}



/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: navy;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}



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