/*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: 90%;
	margin: 0 auto;
}

body {
	background: #cda030; /*to change, look up color codes on Adobe Color, Cooler, or Photoshop*/
	font-family: Geneva, "Times New Roman"; /*to change, look up other font families*/
}
/*heading style*/
h1 {
	font-family: Gadget, cursive;
	color: #133375; 
	text-align: center; 
	font-size: 80px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
/*image style*/
img {
	height:750px; /*change height of image*/
    display: block;
    margin: auto;s
    border:8px solid #761e1e; 
}

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

li {
	font-size: 35px;
	font-style:italic; 
	color: #b22d12;
	}
ul {
  list-style-type: none; /* removes the bullets */
  padding: 0;            /* removes default padding */
}

li {
  margin-bottom: 20px;   /* optional: adds spacing between list items */
}
	