/*colour scheme*/
:root {
    --colour-main: #EEDA4F;
    --colour-1: #FFED71;
    --colour-2: #FFF4A6;
    --colour-3: #9C8E26;
    --colour-4: #D2B802;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.header {
    margin: 0 0 3.5em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--colour-3);
    text-align: center;
    padding: 2.5em 2em 0;
    border-bottom: 1px solid #eee;
    position: -webkit-sticky;
}

#special-header {
    font-family: 'Darumadrop One', cursive;
    color: var(--colour-4);
    position: -webkit-sticky;
}

.header h1 {
    margin: 0.2em 0;
    color: var(--colour-4);
    font-size: 3em;
    font-weight: 300;
}

.header h2 {
    font-weight: 300;
    color: var(--colour-4);
    padding: 0;
    margin-top: 0.2em;
}

.picture {
    max-width: 100%;
    width: 500vw;
    height: auto;
    padding: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content {
    margin: 0 auto;
    padding: 0 2em;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.6em;
}

.content-header {
    margin: 0;
    padding: 0 0 0.65em 0;
    text-align: center;
    color: var(--colour-4);
    font-size: 3em;
    font-weight: 300;
    line-height: 1.1em;
}

.content-subhead {
    margin: 0 0 20px 0;
    font-weight: 300;
    color: var(--colour-4);
}

.content-notes-header {
    margin: 0 0 10px 40px;
    font-weight: 900;
    font-size: 1.2em;
    color: black;
}








/* Anything form here on is a media query: 
    i.e. exceptions for other screens */
@media only screen and (max-width: 600px) {
    #main {
        flex-direction: column;
    }

    .picture {
        width: 100%;
    }

    .header {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .content-subhead {
        width: 100%;
    }

    .header h1 {
        font-size: 15vw;
    }

    .header h2 {
        font-size: 5vw;
    }

    .header h3 {
        font-size: 6vw;
    }
}









/*NAV BAR*/
nav {
    width: 100%;
    position: -webkit-sticky;
}

.nav-ul {
    height: 60px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: var(--colour-main);
}

.nav-li {
    display: inline;
    font-size: 1.4rem;
}

.nav-li a {
    display: inline-block;
    color: var(--colour-3);
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
}

.nav-li a:hover {
    background-color: rgba(255, 245, 166, 0.521);
}

.active {
    background-color: #edc706;
}


/* NEW NAVBAR STYLE*/
.navbar {
    overflow: hidden;
    background-color: var(--colour-main);
    position: -webkit-sticky;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: var(--colour-3);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: var(--colour-3);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar @media(hover: hover) and (pointer: fine),
.dropdown:hover .dropbtn {
    background-color: rgba(255, 245, 166, 0.521);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* End of nav styling */
