/* Style the navigation menu */

.topnav {
    overflow: hidden;
    background-color: rgb(0, 157, 196);
    position: sticky;
    top: 0;
    z-index: 800;
}


/* Hide the links inside the navigation menu (except for logo/home) */

.topnav #myLinks {
    display: none;
}


/* Style navigation menu links */

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
    display: block;
}


/* Style the hamburger menu */

.topnav a.icon {
    background: rgb(188, 221, 144);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}


/* Add a grey background color on mouse-over */


/* Style the active link (or home/logo) */

.active {
    background-color: rgb(188, 221, 144);
    color: white;
}

@media screen and (min-width: 1024px) {
    .topnav {
        display: none;
    }
}