/* Create a sticky/fixed navbar */

#navbar {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 90px 10px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

/* Style the navbar links */

#navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo */

#navbar #logo {
  font-size: 35px;
  font-weight: bold;
  transition: 0.4s;
}

/* Links on mouse-over */

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link */

#navbar a.active {
  //background-color: dodgerblue;
  //color: white;
}

/* Display some links to the right */

#navbar-right {
  float: right;
}

/* Add responsiveness - on screens less than 580px wide, display the navbar vertically instead of horizontally */

@media screen and (max-width: 580px) {
  #navbar {
    padding: 20px 10px !important;
  }
}

@media screen and (max-width: 580px) {
  #navbar a {
    float: none;
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 580px) {
  #navbar-right {
    float: none;
  }
}

