/*Settings to make the logo work and also fix the navbar buttons from being on the left of the logo*/
#logo {
	clear: left;
	float: left;
	margin-left: 12px;
}

/*Settings to make the navigation bar work*/
#navbar {
	width: 100%;
	/*height: 64px;*/
	min-height: 64px; 
	background-color: orange;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
	float: left;
	/*clear: left;*/
	clear: both; 
}

/*Settings for each individual button on the navigation bar*/
.navbar-button {
	font-size: 48px;
	text-decoration: none;
	color: white;
	font-family: sans-serif;
	margin-right: 32px;
	margin-left: 32px;
	background-color: orange;
}

/*Settings for the main content divs in all 5 pages*/
#content {
	border: 3px dashed black;
	bottom: 0;
	text-align: center;
	font-family: sans-serif;
	font-size: 26px;
	/*THESE WERE OLD, YOU FIXED THESE MR ROWE*/
	/*margin-right: auto;*/
	/*margin-left: auto;*/
	width: 90%;
	margin-left: 4%;

	color: white;
	background-color: #8A8A8A;
	margin-top: 72px;
	border-radius: 10px;
	padding: 15px;
	float: left;
	clear: both; 
}

body {
	background-image: url("background.jpg");
	/*Edit of the image on the index page in GIMP; added gaussian blur and lowered brightness*/
}

/*These below are intended to fix links and their colors*/
a:link {
	text-decoration: none;
	color: black;
}

a:visited {
	text-decoration: none;
	color: black;
}

a:hover {
	text-decoration: none;
	color: brown;
}

/*CSS styling for the JavaScript page*/
.recommendation {
	font-weight: bold;
}

.recommendationdesc {
	font-size: small;
}