* {
	margin: 0px;
	padding: 0px;
}

body {
	min-width: 1000px;
	font-size: 16px;
}

h1 {
	margin: 0px 10px 20px 10px;
	color: #5C5040;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}

h2 {
	margin: 40px 20px 20px 20px;
	color: #5C5040;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}

#header {
	width: 100%;
	height: 300px;
	background: url("../images/background.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#header p {
	color: #FFECCB;
	font-family: serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 300px;
	letter-spacing: 5px;
	text-align: center;
	text-shadow:
		0px 0px 10px #000000,
		0px 0px 20px #000000,
		0px 0px 30px #000000;
	text-transform: uppercase;
}

#menubar {
	width: 100%;
	height: 80px;
	background: #5C5040;
}

#menu-spacing {
	display: block;
	margin: auto;
	width: 1000px;
}

#menu {
	display: table;
	table-layout: fixed;
	width: 1000px;
}

#menu ul {
	display: table-row;
}

#menu ul > li {
	display: table-cell;
	text-align: center;
	line-height: 80px;
}

#menu ul > li > a {
	display: block;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.4s;
}

#menu ul > li > a:hover {
	color: #5C5040;
	/* background: #AEAE8C; */
	background: #BEB2A0;
	border-radius: 40px;
}

#content {
	display: block;
	margin: 40px auto;
	width: 1000px;
}

#content div {
	padding: 60px 0px;
}

#content p {
	display: block;
	margin: 20px 30px;
	text-align: justify;
}

#content ul {
	margin-left: 60px;
	list-style-type: square;
}

#up {
	display: block;
	width: 32px;
	height: 32px;
	position: fixed;
	right: 0px;
	bottom: 0px;
	margin: 20px;
	padding: 4px;
	border: 2px solid;
	border-radius: 20px;
	opacity: 0.9;
}

#footer {
	min-width: 1000px;
	height: 40px;
	background: #5C5040;
}

#footer p {
	line-height: 40px;
	color: #FFFFFF;
	font-size: 10px;
	text-align: center;
}