/* stuff affecting the entire page */
body 
{
	text-align:center;
	margin:0;
	padding:0;
	background-color: Black;
}

/* stuff for the entire centered section */
.container 
{
	width:700px; /* <-- width of the centered section */
	height:100%;
	text-align:left;
}

/* top section with name and link */
.top
{
	background-image: url(sunset.jpg); /* <-- background image */
	background-position:left bottom;
	width:100%;
	border-right: solid 5px black;
	padding-top:50px; /* <-- how far down from the top the name is */
	padding-left: 20px; /* minimum distance from left edge */
	padding-right: 20px; /* <-- minimum distance from right edge */
	padding-bottom:10px; /* <-- how far below the text the line is */
	color:White; /* <-- font color for the name */
	font-style:italic; /* <-- font style for the name and link*/
	font-size:xx-large; /* <-- font size for the name */
	font-weight:bold; /* <-- bolding for the name and link */
	text-align:right; /* alignment for the name */
}

/* styles for the link within the top section */
.top a
{
	font-size:x-large;
}

/* white section with most of the words */
.content 
{
	background-color:white;
	height:600px; /* height of the content section below the title */
	width:100%;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:50px;
	padding-right:50px;
	border-right: ridge 5px gray;
	border-left: groove 5px gray;
	text-align:left;
}
