/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
body {
	font-family: cochin;
	background: linear-gradient(orangered,red);
	overflow-y: scroll;

}

/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {
	color: orangered;  
	font-family: serif;
	text-shadow: 7px 7px cadetblue;
}


/* style your links */
a:link { 
	color: teal;
	font-style: italic;
	text-shadow: 6px 6px red;
}

a:visited {
	font-style: italic;
	color: cadetblue;
	text-shadow: 4px 4px red;
}

a:hover {
	color: black;
}

a:active {

}

hr {
	width: 33%;
	color: cadetblue;
	border:none;
	height: 50px;
	border-bottom: 2px solid red;
	box-shadow: 0 20px 20px -20px darkred;
	margin: -50px auto 10px;
}
h1 {
	font-style: oblique;
	line-height: 0.4;
	letter-spacing: 0.25em;
	text-shadow: 8px 5.5px red;
	color: cadetblue;
	text-align: left;
	font-size: 300%;
	border:none;
 }
h4 {
	text-align: center;
	color: cadetblue;
	text-shadow: 4px 4px red;
}
li {
	font-style: italic;
	line-height: 1.0;
	letter-spacing: 0.06em;

}
/* 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 */
.home { 
	font-size: 36px;
}
.project-01 {
	background: pink;
}

.project-02 {
	background: teal;
}



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

.header {
	padding-bottom: 30px;
}

.footer {
	padding-top: 30px;
}