/* Mobile first view */
header {
    background-color: black;
    overflow: hidden;
}

h1 {
    color: #cb87ff;
    float: left;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

#hamburger_checkbox {
    display: none;
}

#hamburger_image {
    background-color: black;
    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: limegreen;
    float: left;
    font-size: 17px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

nav a:hover {
    color: black;
    background-color: white;
}
/* Invert colors on mouse hover */
nav a:focus {
    background-color: white;
    color: black;
    outline: none;
}

/* Highlight the current link  */
.active_nav {
    background-color: limegreen;
    color: black;
}





/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
    /* Hide 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;
    }

}