body {
	font-family: Arial, sans-serif;
	margin: 40px;
	background-color: #f2f2f2;
}

h1 {
	color: darkblue;
}

.menu {
	background-color: darkblue;
	border: 2px solid black;
	padding: 15px;
	margin-bottom: 20px;
	height: 25px
}

.menu a {
	color: white;
	text-decoration: none;
	margin-right: 20px;
}

.menu a:link {
	color: white;
}

.menu a:visited {
	color: lightgray;
}

.menu a:hover {
	color: yellow;
	text-decoration: underline;
}

.menu a:active {
	color: red;
}

.story {
	background-color: white;
	border: 1px solid gray;
	padding: 25px;
	width: 900px;
	min-height: 300px;
}

.story p {
	font-size: 18px;
	line-height: 1.5;
}

.story h2 {
	font-size: 26px;
}


.story img {
	float: right;
	width: 350px;
	height: 220px;
	margin-left: 20px;
	margin-bottom: 10px;
}

.continue {
	color: blue;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
}

.continue:hover {
	color: red;
	text-decoration: underline;
}

