@font-face {
  font-family: "freight";
  src: url("fonts/freight.ttf");
}
html{
  overflow-y: scroll;
}
body{
  background-color: #dbe1e7;
  font-family: "freight", sans-serif;
}
#nav_bar{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #dbe1e7;
  z-index: 1;
  position: sticky;
  top: 50px;
  padding-bottom: 20px;
}

#active{
  color: #3f5c7d !important;
  background-size: 100% .1em !important;
}

#nav_bar a{
  text-decoration: none;
  color: #333335;
  font-size: 20px;
  margin: 0 30px;
  transition: background-size .2s ease-in-out;
  background-image:  linear-gradient(#3f5c7d,#3f5c7d);
  background-size: 0% .1em;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-position-x: 100%;
}
#nav_bar a:hover{
  color: #3f5c7d;
  background-size: 100% .1em;
  background-position-x: 0%;
}

#logo_bar{
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #dbe1e7;
  text-align: center;
}
#logo_bar a{
  display: inline-block;
}
#logo{
  display: block;
  height: 50px;
  width: auto;
}
.clear{clear: both;}