/*overall style*/
div {
    width: 75%;
	margin: 0 auto;
}

body {
	background: #faa26e;
	font-family: "Times New Roman", serif;
	font-weight: bold;
	font-size: 26px;
}

/*heading style*/
h1 {
	font-family: "Times New Roman", serif;
	color: #AD4000; 
	text-align: center; 
	font-size: 32px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
h2 {
	font-family: "Times New Roman", serif;
	color: #AD4000; 
	text-align: center; 
	font-size: 28px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}
h3 {
	font-family: "Times New Roman", serif;
	color: #AD4000; 
	text-align: center; 
	font-size: 26px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}

h4 {
	font-family: "Times New Roman", serif;
	color: #AD4000; 
	text-align: center; 
	font-size: 18px; /*you can change all font sizes by changing the pixels*/
	font-weight: regular;
}

i {
	font-family: "Times New Roman", serif;
	color: #AD4000; 
	text-align: center; 
	font-size: 30px; /*you can change all font sizes by changing the pixels*/
	font-weight: regular;
}

/*image style*/
img {
	height:250px; /*change height of image*/
    display: block;
    margin: auto;
    border:0px solid #ffffff; 
}

/*paragraph style*/
p {	
	font-size: 22px;
	text-align: center; /*may change this to left, right or center*/
	color: #0e98ad; /*change this to the hexidecimal number for the paragraph text color you prefer*/
}

/*unvisited link style*/
a {
	color: #FF0078;
    text-align: center;
}

/*hovered over link style*/
a:hover {
	color: #0cebf3; 
}

/*visited link style*/
a:visited {
	color: #000000; 
}

/*list styles*/
ul {
   display: block;
    margin:auto; 
    text-align: left;
	padding-left: 35%;
  	list-style-position: inside;
}
li {
	font-size: 22px;
	font-style:bold; 
	text-align: left;
	color: #96FAFA;
	}

