/*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: #F2C1BD; /*to change, look up color codes on Kuler or photoshop*/
	font-family: Georgia, serif
; /*to change, look up other font families*/
	width: 60%;
	margin: 0 auto;
}
/*heading style*/
h1 {
	font-family: Georgia, serif;
	color: #F23838; 
	text-align: center; 
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
h2 {
	font-family: Georgia, serif;
	color: #F23838; 
	text-align: center; 
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
/*image style*/
img {
	width:600px; /*change width of image*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    border:#F27272; 
}
/*paragraph style*/
p {	
	font-size: 20px;
	text-align: justify; /*may change this to left, right or center*/
	width: 800px; /*changes width of paragraphs*/
	color: #6F8CA6; /*change this to the hexidecimal number for the paragraph text color you prefer*/
	padding: 5px 10px;
	font-family: Georgia, serif;
}
/*unvisited link style*/
a {
	color: #FF0078;font-size: 24px;
}
/*hovered over link style*/
a:hover {
	color: #F27272; font-size: 24px;
}
/*visited link style*/
a:visited {
	color: #F27272; font-size: 24px;
}
/*list item style*/
li {
	font-size: 24px;
	font-style:bold; 
	color: #F27272;
	}