/*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*/
div {
    width: 75%;
	margin: 0 auto;
}

body {
	background: #106111; /*to change, look up color codes on Adobe Color, Cooler, or Photoshop*/
	font-family: 'Courier New', Courier, monospace; /*to change, look up other font families*/
}
/*heading style*/
h1 {
	font-family: 'Courier New', Courier, monospace;
	color: #d1ff75; 
	text-align: center; 
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight:bold;
}
/*image style*/
img {
	height:350px; /*change height of image*/
    display: block;
    margin: auto;
    border:5px solid #000000; 
}

/*paragraph style*/
p {	
	font-size: 30px;
	text-align: center; /*may change this to left, right or center*/
	color: #86ed7e; /*change this to the hexidecimal number for the paragraph text color you prefer*/
}
/*unvisited link style*/
a {
	color: #ffffff;
    text-align: center;
}
/*hovered over link style*/
a:hover {
	color: #f4fe63; 
}
/*visited link style*/
a:visited {
	color: #ff0000; 
}
/*list styles*/
ul {
   display: block;
    margin:auto; 
    text-align: center;
	padding-left: 35%;
  	list-style-position: inside;
}

li {
	font-size: 30px;
	color: #de84ff;
	text-align: center;
	}

