/* The sticky class is added to the navbar with JS when it reaches its scroll position */
#content::before{
.sticky{
content:"";
position:fixed;
display:block;
top:0;
height:40px;
width:100%
}
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */