/* Setting background image for complete page */
body {
	background-image: url(imgs/steveroachdither1.png), url(imgs/steveroachdither2.png);
	background-repeat: repeat-x, repeat;
	background-color: rgba(23, 9, 36, 1);
	font-family: Tahoma, Verdana, sans-serif;;	
}

/* Content on the page surrounded by border */
.MainContent {
	display: block;
	color: white;
	width: 720px;
	border: 2px solid lightgrey;
	padding: 5px;
	margin: 20px auto 20px auto;
	background-color: rgba(23, 9, 36, 0.8);
	border-radius: 25px;
}

/* Page header styling */
.HeaderBanner {
	display: flex;
    align-items: end;     /* vertical centering   */
    justify-content: center; /* horizontal centering */
	margin-bottom: 5px;
	height: 60px;
}

/* Main menu styling */
.MainMenu {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	list-style-type: none;
	margin: 0px -5px 5px -5px;
	padding: 0px 0px 0px 0px;
	border-top: 2px solid lightgrey;
	border-bottom: 2px solid lightgrey;
	overflow: hidden; /* cutts off content to fit the dimensions of the container */
	background-color: rgba(23, 9, 36, 0.6);
	height: 45px;
}

.MainMenu li {
}

.MainMenu li a {
	font-family: 'Courier New', monospace;
	font-weight: bold;
	color: white;
	text-decoration: none;
}

.MainMenu li a:hover{
	background-color: rgba(23, 100, 36, 1);
	padding: 5px 5px 5px 5px;
}

h1 {
	text-align: center;
}

h2 {
	text-align: center;
}

h3 {
	text-align: center;
}

h4 {
	text-align:center;
}

/* bottom of page */
.TopOfPageButton {
	text-align: center;
}

/* class for centered text and images */
.CenteredContent {
	text-align: center;
}
