/*
 * Template file for Alnetak's site style
 * Author: Florentino Becerra
 * All rights Reserved.
 */


/* Body and header elements styled */
body {
	font-family: Arial, Helvetica, Times New Roman, sans-serif;
	color: black;
}

.bnr {
	text-align: center;
	font-size: 220%;
	font-style: italic;
}
/* End of header and body style */

/* Navigation bar styled below */
.navbar ul {
	list-style-type: none;
	background-color: #4b0082;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.navbar li {
	/*Makes it so that there is a solid line that divides each option*/
	float: left;
	border-right: 20% solid white;
}
.navbar li:last-child {
	/*Adds no border to the last menu bar item*/
	border-right: none;
}
.navbar a {
	display: block;
	color: white;
	text-align: center;
	width: 25%;
	padding: 12px;
	text-decoration: none;
	float: left;
	font-size: 115%;
}



/*End of navigation menu bar*/

/*Main content, such as heading levels, links, and other HTML elements are styled below*/
h1 {
	text-align: center;
}
p {
	font-size: 100%;
}

footer p {
	font-size: 75%;
	text-align: initial;
}
