/*
This contains the main styles to control the screen appearance of the website.
*/
/* 
    Created on : Jun 15, 2015, 10:56:55 AM
    Author     : Braden Wilcock
*/

/*Get the Normalize stylesheet*/
@import "normalize.min.css";

html, body{
    height: 100%;
    width: 100%;
}

body{
    font-family: verdana, sans-serif;
    color: #303030;
    font-size: 0.95em;
    line-height: 130%;
}

h1, h2, h3, h4, h5, h6{
    font-family: "trebuchet ms", sans-serif;
    color: #04776c;
    line-height: 120%
}

a:link{
    color: #9f4a29;
}

a:visited{
    color: #6c331c;
}

body{
    background-image: url(/media/images/background1.png);
    background-attachment: fixed;
}

header{
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}

header img{
    width: 100%;
}

img{
    max-width: 100%;
}

nav{
    height: 100%;
    width: 24em;
    margin-left: auto;
    margin-right: auto;
}

nav ul{
    list-style-type: none;
}

nav li{
    display: inline;
}

nav li li{
    display: block;
}

nav a:link{
    font-family: "trebuchet ms";
    font-size: .85em;
    font-weight: bold;
    color: #5c3727;
    background-color: #e5af99;
    text-align: center;
    padding: .25em;
    text-decoration: none;
    line-height: 175%;
}

nav a:hover{
    color: #484916;
    background-color: #f6f5a1;
}

nav a:active{
    color: #484916;
    background-color: #f6f5a1;
}

body div{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

body nav div{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

body>div{
    background-color: rgba(255,255,255,0.85);
    padding-top: 1em;
    padding-bottom: 1em;
}

video, audio{
    width: 100%;
}

dt{
    text-decoration: underline;
}

#dropdown{
    display: none;
    position: absolute;
    z-index: 1;
    padding-left: 4.3em;
}

#container:hover > #dropdown{
    display: block;
}

footer li{
    list-style-type: none;
}

.icon{
    height: 1.5em;
}

.divider{
    display: none;
}

@media screen and (min-width: 400px){

nav li{
    display: inline;
}

nav li li{
    display: block;
}

footer li{
    display: inline;
}

.divider{
    display: inline;
}

nav a:link{
    font-size: 1.25em;
}
}

@media screen and (min-width: 600px){
    
body{
    font-size: 1.15em;
}

body div{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

nav{
    width: 22em;
}
}

@media screen and (min-width: 1280px){

body{
    font-size: 1.30em;
}
    
body div{
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

nav{
/*    margin-left: 20%;
    margin-right: 20%;
    height: 100%*/
}
}