body {
	margin: 0;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	background-image: url('includes/BMnevada.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.3);
	z-index: -1;
}

#container {
	width: 900px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	font-family: 'Georgia', serif;
}

#site-title {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #4B0082;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	font-family; 'Georgia', serif;
}

#auth-links {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 14px;
}

#auth-links a:hover {
	text-decoration: underline;
}

#sidebar {
	float: left;
	width: 180px;
	font-size: 14px;
}

#sidebar a {
	display: block;
	text-decoration: none;
	color: #4B0082;
	margin-bottom; 8px;
	transition: color 0.3s;
}

#sidebar a:hover {
	text-decoration: underline;
}

/*main content */

#content {
	margin-left: 200px;
	font-size: 16px;
	line-height: 1.7;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	
}

#content h2 {
	font-size: 24px;
	margin-bottom: 12px;
	color: #4B0082;
	text-shadow: 1px 1px 1px rgba(0,0,0,0,.2);
}

#content p {
	line-height: 1.8;
	color: #333;
}

footer {
	clear: both;
	text-align: center;
	font-size: 13px;
	margin-top: 40px;
	color: #000;
}
