/*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: #D8EDF2; /*to change, look up color codes on Adobe Color, Cooler, or Photoshop*/
	font-family: Optima, Geneva, sans-serif; /*to change, look up other font families*/
	cursor: url('images/ice_skates.png'), auto;
	
}
/*heading style*/
h1 {
	font-family: "Gill Sans", Gadget, sans-serif;
	color: #2B4034; 
	text-align: center; 
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
	cursor: url('images/ice_skates.png'), auto;
}
/*image style*/
img {
	height:350px; /*change height of image*/
    display: block;
    margin: auto;
    border:2px solid #75B2BF; 
	cursor: url('images/ice_skates.png'), auto;
}

/*paragraph style*/
p {	
	font-size: 16px;
	text-align: center; /*may change this to left, right or center*/
	color: #394A59; /*change this to the hexidecimal number for the paragraph text color you prefer*/
	cursor: url('images/ice_skates.png'), auto;
}
/*unvisited link style*/
a {
	color: #000000;
    text-align: center;
}

a.alt {
	color: #a40a0a;
	text-align: center;
}

a.alter {
	color: #e8c021;
	text-align: center;
}
/*hovered over link style*/
a:hover {
	color: #e8c021; 
}

a:hover.alt {
	color: #a40a0a;
}
/*visited link style*/
a:visited {
	color: #000000; 
}

a:visited.alt {
	color: #a40a0a;
}

a:visited.alter {
	color: #e8c021
}
/*list styles*/
ul {
   display: block;
    margin:auto; 
    text-align: left;
	padding-left: 35%;
  	list-style-position: inside;
}

li {
	font-size: 16px;
	font-style:italic; 
	color: #FF0078;
	}

