html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 40px;
}

.navbar { 
  background-color: grey;
  list-style-type: none;
}


.navbar:after {
  content: "";
  clear: both;
  display: table;
}

.navbar li {
  background-color: grey;
  float: left;
}

.navbar li:hover {
  background-color: #ddd;
  color: black;
}

.navbar li.active {
  background-color: #4CAF50;
  color: white;
}

.navbar a {
  display: block;
  font-size: 17px;
  padding: 14px ;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
}

#nav-settings, #nav-login {
  float: right;
}

.dropdown {
  float: left;
  overflow: hidden;
}


.dropdown .dropbtn {
  font-size: 17px;
  padding: 14px ;
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  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: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.footer {
  width: 100%;
  padding: 14px;
  position: absolute;
  bottom: 0px; left: 0;
  background-color: lightgrey
}