

.logo {
  display: inline-block;
  vertical-align: top;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  margin-top: 15px;    /* if you want it vertically middle of the navbar. */
}

.active {
  background-color: #4CAF50;
  color: black;
}



.navigation-bar {
   /* width: 100%;  /* i'm assuming full width */
   /* height: 80px; /* change it to desired width */
    background-color: rgb(9, 41, 91) ; /* change to desired color */
    overflow: hidden;
    
}

/* Style the links inside the navigation bar */
.navigation-bar a {
  color: #f2f2f2;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  padding: 1em 1em;
  line-height: 2em; 
/*  
  font-size: 17px;
  */
}

/* Change the color of links on hover */
.navigation-bar a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.navigation-bar a.active {
  background-color: rgb(23, 58, 114) ;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.navigation-bar .icon {
  display: none;
} 





 /* Add a black background color to the top navigation */
.topnav {
  background-color: rgb(9, 41, 91) ; /*#333;*/
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
} 

