/*
Style Scheme:

Standard font: arial, sans serif
Emphesis font: arial black, sans serif

Colors:
Light: #ede7e4
Dark: #333
Darker: #1f1f1f
Highlight: #e85d17
Black: black

Body: Light

Text:
Header 1: Emphesis font, Highlight, 30px
Header 2: Emphesis font, Dark, 25px
Emphasis: Emphesis font, Highlight, 20px
Body text: Standard font, Black, 18px

Nav Bar: Horizontal, background Dark, text Light, active text Highlight, mouseover background Darker

Nav Bar Mobile:
*/
navelement a, standardtext {
    font: 18px arial, sans serif;
}

header1, header2, linked a {
    font: 25px arial black, sans serif;
}
emphasis {
    font: 20px arial black, sans serif;
    color: #e85d17;
}

.tab {
    margin-left: 30px;
}



navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
}

navelement {
    float: left;
}

navelement a {
    display: block;
    color: #ede7e4;
    text-decoration: none;
    padding: 25px 25px;
    font-size: 20px;
}

navelement a:hover {
    background-color: #1f1f1f;
}

linked a {
    font-size: 18px;
    text-decoration: none;
    color: #333;
}

linked a:hover {
    color: #e85d17;
}

.active {
    color: #e85d17;
}

p.a {
    width: auto-100px;
    margin: 25px 0px 25px 100px;
}

body {
    width: 90%;
    overflow-x: hidden;
    background-color: #ede7e4;
    margin-left: 20px;
}


fullbody {
    width: 100%;
    overflow-x: hidden;
    background-color: #ede7e4;
    margin-left: 20px;
}

header1 {
    font-size: 30px;
    color: #e85d17;
    text-align: center;
    display: block;
}

header2 {
    font-size: 25px;
}

standardtext {
    font-size: 18px;
}

ul {
    margin-left: 100px;
}


@media screen and (max-width: 700px) {
    navbar {
	overflow: hidden;
	position: static;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #ede7e4;
    }
    navelement {
	float: none;
	background-color: #ede7e4;
    }
    navelement a {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 30px 25px;
	font: 20px arial, sans serif;
    }
    navelement a:hover {
	background-color: #1f1f1f;
	color: #ede7e4;
    }
    header2 {
	font: 25px arial black, sans serif;
	margin-left: 0px;
	margin-right: 0px;
	color: #333;
    }

    standardtext {
	font: 18px arial, sans serif;
	margin-left: 0px;
	margin-right: 0px;
    }
    ul {
	margin-left: 0px;
    }
    p.a {
	width: auto;
	margin: 20px 0px 20px 0px;
    }
    body {
    width: 90%;
    overflow-x: hidden;
    background-color: #ede7e4;
    margin-left: 20px;
    }
}
