@media only screen and (max-width: 980px) {
    html,
    body {
        background: #ffe9e4
    }
    #nav {
        display: none;
    }
    .page-padding {
        padding: 10px;
    }
    #menu_toggle {
        display: block;
        margin-left: 0px;
        margin-top: 10px;
        background: transparent;
        color: white;
        font-size: 1.5em;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
    }
    .side-menu {
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../img/sunset-header-3.png);
        background-size: 100% 100px;
        background-repeat: no-repeat;
        width: 100%;
        height: 400px;
        background-color: white;
        z-index: 100;
    }
    /*
Contains the header image that goes across the top of the page

Image is 2048 x 190
*/
    .back {
        background-image: url(../img/sunset-header-3.png);
        background-size: 100% 100px;
        height: 200%;
        width: 100%;
        background-repeat: no-repeat;
        position: absolute;
        z-index: 1;
    }
    .container {
        height: 400%;
        background: transparent;
        position: absolute;
        z-index: 1;
    }
    .logo {
        display: none;
    }
    .header {
        width: 100%;
        height: 100px;
    }
    /* 
Text that appears under tehe logo
A shadow is added so that the text will pop against the background image
*/
    .header-name {
        font-size: 1.7em;
        color: white;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
        font-family: 'Muli', cursive !important;
        float: right;
    }
    .quote {
        float: right;
        text-align: right;
        width: 75%;
        padding-right: 10px;
        margin-top: 25px;
        color: white;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
    }
    /* 
used in several divs in combination with styles to create a shadow that will
encompass the full height of the div

Used in:

back:       to create the shadow under the header image
container:  to create the shadow on the left and right of container
portrait:   to create a shadow surrounding the picture
*/
    .shadow {
        -webkit-box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
    }
    .heading {
        background: transparent !important;
        border: 0;
        font-size: 2em;
        font-weight: bold;
    }
}


/* End Mobile CSS */


/* For web sites */

@media only screen and (min-width: 980px) {
    html,
    body {
        /*
background-image: url(../img/background-1.png);
background-size: cover;
*/
        padding: 0px;
        width: 100%;
        height: 100%;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a2adcc+0,ffe9e4+37,ffe9e4+54,979eb2+100 */
        background: #a2adcc;
        /* Old browsers */
        background: -moz-linear-gradient(top, #a2adcc 0%, #ffe9e4 37%, #ffe9e4 54%, #979eb2 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #a2adcc 0%, #ffe9e4 37%, #ffe9e4 54%, #979eb2 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #a2adcc 0%, #ffe9e4 37%, #ffe9e4 54%, #979eb2 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a2adcc', endColorstr='#979eb2', GradientType=0);
        background-repeat: no-repeat;
        background-attachment: fixed;
        /* IE6-9 */
    }
    /*
Contains the header image that goes across the top of the page

Image is 2048 x 190
*/
    .back {
        background-image: url(../img/sunset-header-3.png);
        background-size: 100% 180px;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        position: absolute;
        z-index: 1;
    }
    /*
Defines the main container which is centered on the browser window.

This also has a gradient that goes from transparent to a color, top to bottom,
which will allow the header picture to be clearly visible
*/
    .container {
        padding: 0px !important;
        min-height: 150%;
        max-width: 960px !important;
        z-index: 100;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        /*
            container background
        */
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b2958e+0,b2958e+100&0+0,1+100 */
        background: -moz-linear-gradient(top, rgba(178, 149, 142, 0) 0%, rgba(178, 149, 142, 1) 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(178, 149, 142, 0) 0%, rgba(178, 149, 142, 1) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(178, 149, 142, 0) 0%, rgba(178, 149, 142, 1) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00b2958e', endColorstr='#b2958e', GradientType=0);
        /* IE6-9 */
    }
    /* 
used in several divs in combination with styles to create a shadow that will
encompass the full height of the div

Used in:

back:       to create the shadow under the header image
container:  to create the shadow on the left and right of container
portrait:   to create a shadow surrounding the picture
*/
    .shadow {
        -webkit-box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 2px 23px 0px rgba(0, 0, 0, 0.75);
    }
    .header {
        height: 180px;
    }
    .logo {
        margin-left: 20px;
    }
    /* 
Text that appears under tehe logo
A shadow is added so that the text will pop against the background image
*/
    .header-name {
        margin-left: 40px;
        font-size: 2.2em;
        color: white;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
        font-family: 'Muli', cursive !important;
    }
    .nav-button {
        padding-left: 10px;
        padding-right: 10px;
    }
    .page-padding {
        padding: 30px;
    }
    .quote {
        float: right;
        text-align: right;
        width: 45%;
        padding-right: 50px;
        margin-top: 25px;
        color: white;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
    }
    #menu_toggle {
        display: none;
    }
    .heading {
        background: transparent !important;
        border: 0;
        font-size: 2.5em;
        font-weight: bold;
    }
}


/* End Web CSS */

.article-heading {
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: underline;
}

.article-text {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.allura {
    font-family: 'Allura', cursive;
}

.muli {
    font-family: 'Muli', sans-serif;
}

#nav {
    padding-left: 60px;
    padding-right: 60px;
    text-align: right;
    font-size: 1.2em;
}

footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #efefef;
    text-align: center;
    z-index: 200;
}