#navbar {
    overflow: hidden;
    background-color: #101010;
    text-align: center;
    padding: 0 0;
    border-bottom: 2px solid black;
    z-index: 1000;
}

/* Navbar links */
#navbar a {
    float: none;
    display: inline;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 30pt;
}

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

/* Page content */
.content {
    padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    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) */
.sticky + .content {
    padding-top: 80px;
}

@media only screen and (max-width: 480px) {
    #navbar a {
        font-size: 13pt;
    }

    /*img {*/
    /*    width: 80%;*/
    /*}*/

    /*.sticky + .content {*/
    /*    padding-top: 180px;*/
    /*}*/
}
