/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
body {
	font-family: sans-serif;
	background-color: #d1acac;

}

h1 {
	color: black;
	font-weight:bold;
	text-align: center;
	font-size: 70px;

}
h2{ 
	color: white;
	/*background-color: black;
	/*border: solid black 5px;*/


}
h3{ 
	color: white;
	font-size: 30px;
	text-align: center;
}

h4{
	font-size: 25px;


}
h5{
	font-size: 70px;
	font-family: sans-serif;

}
/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {  
	font-family: sans-serif;
	margin-bottom: 1em;
font-size: 18px;
}
button{
	margin-top: 30px;

}
/* style your links */
a:link { 
	color: black;
}

a:visited {
	color: black;
}

a:hover {
	color: grey;
	cursor: inherit;

}

a:active {

}

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

pre {
	border: solid black 1px;
}

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




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