/*You can change the hexidecimal number to change the colors on your nonlinear story.
You can also change the font family, font sizes, font styles, or alignments*/

/*overall style*/
body {
	background: #00563f; /*to change, look up color codes on Kuler or photoshop*/
	font-family:sans-serif; /*to change, look up other font families*/
	width: 60%;
	margin: 0 auto;
}
/*heading style*/
h1 {
	font-family:sans-serif;
	color: #55ab94;
	text-align: center;
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
h2 {
	font-family:sans-serif;
	color: #55ab94;
	text-align: center;
	font-size: 18px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
h3 {
	font-family:sans-serif;
	color: #55ab94;
	text-align: center;
	font-size: 18px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
/*image style*/
img {
	width:200px; /*change width of image*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    border:5px solid #55ab94;
}
/*paragraph style*/
p { line-height: 2 ;
	font-size: 20px;
	text-align: center;; /*may change this to left, right or center*/
	width: 800px; /*changes width of paragraphs*/
	color: #e0cdb7; /*change this to the hexidecimal number for the paragraph text color you prefer*/
	padding: 5px 10px;
}
/*unvisited link style*/
a {
	color: #FBD67B;
}
/*hovered over link style*/
a:hover {
	color: #55ab94;
}
/*visited link style*/
a:visited {
color: #e0cdb7;
}
/*list item style*/
li {
	font-size: 16px;
	font-style:italic;
	color: #55ab94;
	}
