/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
body{
	padding: 0;
	margin: 0;
	font-family: Arial;

}
#nav{
	background-color: #212121;
}

#nav-wrapper{
	width: 100%;
	margin: 0 auto;
	text-align: left;
}

#nav ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: relative;
}

#nav ul li {
	display: inline-block;
}

#nav ul li:hover{
	background-color: #424242;
}

#nav ul li img{
	vertical-align: middle;
	padding-left: 5px;
}

#nav ul li a{
	color: #fff;
	display: block;
	padding: 15px;
	text-decoration: none;
}

#nav ul li:hover ul{
	display: block;
}

#nav ul ul{
	display: none;
	position: absolute;
	background-color: #424242;
	min-width: 200px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#nav ul ul li{
	display: block;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#nav ul ul li a{
	color: #fff;
}

#nav ul ul li a:hover{
	color: #099;
}
/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {  
	font-family: serif;

}
h4{
	font-family: sans-serif;
	height: auto;
    color: green;}

h1{
	font-family: sans-serif;
	height: auto;
    color: lightgreen;

}

h2{
	font-family: sans-serif;
	height: auto;
}

/* style your links */
a:link { 

}

a:visited {

}

a:hover {

}

a:active {

}

/* you can style your elements however you'd like. I'm adding a border so we can see them */
iframe {
	border: solid red 1px;
	width: 100%;
	height: 500px;
}

pre {
	border: solid blue 1px;
}

/* max-width: 100%; will prevent an element from extending beyond the page boundaries */
img {
	max-width: 100%;
}

/* width: 100%; will force an element to adopt the width of the page boundaries */
img.full-width {
	width: 100%;
}


/* CLASSES
---------- */

/* to apply different styles to different pages, you can add a class name to the body. when doing this, think about what you're changing and why. the overall structure and typogrphy around your site should feel consistent. any changes or deviations should be meaningful. click around between all the pages in this site so you can see how these classes and their respective styles are being applied. */
.home { 
	font-size: 24px;
}
.project-01 {
	background: pink;
}

.project-02 {

}



/* CONTAINERS
---------- */
/* why we use wrappers, here: http://stackoverflow.com/a/5275428 */
.wrapper {
	margin: 30px auto;
	max-width: 90%;
}

.header {
	padding-bottom: 30px;
}

.footer {
	padding-top: 30px;
}