/* Style the navigation bar */
.navbar {
  width: 100%;
height : 100px;
color: white;
//background-color: #555;
  // overflow: auto;
}

/* Navbar links */
.navbar a {
  float: left;
  text-align: center;
  padding: 12px;
  color: white;
background-color: #888888;  // gris

  text-decoration: none;
  font-size: 17px;
}

/* Navbar links on mouse-over */
.navbar a:hover {
  background-color: #0000FF;  //blue
}


/* Current/active navbar link */
.navbar a.active {
  background-color: #FF0000;  //Red
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}