/*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: rgb(228,185,33);
background: radial-gradient(circle, rgba(228,185,33,1) 0%, rgba(232,229,218,0.9934348739495799) 0%, rgba(218,151,29,1) 87%);
	font-family: Tahoma, Geneva, sans-serif; /*to change, look up other font families*/
	width: 60%;
	margin: 0 auto;
}
/*heading style*/
h1 {
	font-family: "Arial Black", Gadget, sans-serif;
	color: #fc9b53; 
	text-align: center; 
	font-size: 37px; /*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:5px solid #fc9b53; 
}
/*paragraph style*/
p {	
	font-size: 25px;
	text-align: justify; /*may change this to left, right or center*/
	width: 800px; /*changes width of paragraphs*/
	color: #B22473 ; /*change this to the hexidecimal number for the paragraph text color you prefer*/
	padding: 5px 10px;
    font-weight:bold;
}
/*unvisited link style*/
a {
    font-family: "Arial Black", Gadget; sans-serif; 
	color: #FFFFFF;
    font-size: 38px
    font-weight: bold;
}
/*hovered over link style*/
a:hover {
	font-family: "Arial Black", Gadget; sans-serif; 
	color: #FFFFFF;
    font-size: 38px
    font-weight: bold;
}
/*visited link style*/
a:visited {
	font-family: "Arial Black", Gadget; sans-serif; 
	color: #FFFFFF;
    font-size: 38px
    font-weight: bold;
}
/*list item style*/
li {
	font-family: "Arial Black", Gadget; sans-serif; 
	color: #fc9b53;
    font-size: 38px
    font-weight: bold;
	}