/* Mobile First View */ 
header {
    background-color: rgb(0, 255, 0);
    overflow: hidden;
}

h1 {
    color: rgb(0, 0, 0);
    float: left;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

#hamburger_checkbox {
    display: none;
}

#hamburger_image {
    background-color: rgb(0, 255, 0);
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 10%;
}

/* Show or hide the menu */
#hamburger_checkbox:not(:checked) + nav {
    display: none;
}

nav a {
    color: rgb(0, 0, 0);
    float: left;
    font-size: 17px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/* Invert colors on mouse hover */
nav a:hover {
    background-color: rgb(0, 255, 0);
    color: black; 
}

/* Invert colors on tab key focus */
nav a:focus {
    background-color: rgb(0, 255, 0);
    color: black; 
    outline: none;
}

/* Highlight the current link */
.active_nav {
    background-color: rgb(148, 11, 79);
    color : rgb(0, 0, 0);
}



@media only screen and (min-width: 768px) {

    /* hid the hamburger menu */ 
    #hamburger_image{
        display: none;
    }

    /* show the nav links */
    #hamburger_checkbox:not(:checked) + nav {
        display: block;
    }

    h1 {
        text-align: left;
        width: 390px;
    }

    nav {
        float: right;
    }

    nav a {
        width: auto;
    }
}