/* Mobile First View */

header {
    background-color: #edd4b2;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
}

h1 {
    color: #2E382E;
    float: left;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}
/* Hides burger checkbox */
#hamburger_checkbox {
    display: none;
}

#hamburger_image {
    background-color: #D0A98F;
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 10%;
}
/* Show or hide the burger menu */
#hamburger_checkbox:not(:checked) + nav {
    display: none
}

nav a {
    color: #4A1E81;
    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: aliceblue;
    color: #444;
}
/* Invert Colors on key focus */
nav a:focus {
    background-color: aliceblue;
    color: #444;
    outline: none;
}
/* highlight currrent page */
.active_nav {
    background-color: rgb(148, 170, 104);
}

/* Medium Devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    /* Hide burger menu in big screen */
    #hamburger_image {
        display: none;
    }
    
    /* Show nav links always */
    #hamburger_checkbox:not(:checked) +nav {
        display: block;
    }
    h1 {
        text-align: left;
        width: 390px;
    }
    nav {
        float: right;
    }
    nav a {
        width: auto;
    }
}