/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
body,h1,title {
	 font-family: 'Open Sans', sans-serif;
	 color:black;
	 background-color: white;
	 font-size: 20pt;
	 padding-bottom: 2px;
}


#header{
	padding-top: 25px;
	padding-bottom: 0px;
}



/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {  
	font-family: 'Open Sans', sans-serif;
	font-size: 15pt;
	color:black;
	padding-bottom: 2px;

}

/* style your links */
a:link { color: black;
	text-decoration: none;
	

}

a:visited {color: black;
	text-decoration: none;

}

a:hover {color: #ff008a;
 text-decoration: none;
 font-size: 20pt;

}

a:active { color:black;
	text-decoration: none;
	
}

/* you can style your elements however you'd like. I'm adding a border so we can see them */
iframe {
	border: solid grey 2px;
	width: 100%;
	height: 500px;
	background-color: white;
	padding-top: 5px;
	padding-bottom: 3px;

}

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: 36px;
	font-family: 'Patua One', cursive;

}
.project-01 {
	background-color: white;


}

.project-02 {
	background-color:white;

}

.project-03 {
	background-color: white;

}

#iframe_p01{
	border: solid grey 1px;
	width: 100%;
	height: 1000px;
	background-color: white;
}

.iframe_p03{
	border: solid grey 1px;
	width: 75%;
	height: 500px;
	background-color: white;
	position: center;
}

#iframe_p01{
	border: solid grey 1px;
	width: 100%;
	height: 1000px;
	background-color: white;
}

.title{color:#285183;}


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

.header {
	padding-bottom: 30px;
}

.footer {
	padding-top: 30px;
}