body {
	background-color: #153217;
	color: #F7C721;
	font-family: sans-serif;
	margin: 0px;
	padding: 0px;
}
a, a:visited {
	text-decoration: none;
	color: #F7C721;
}
h2 {
	font-size: 18pt;
	margin-top: 75px;
}
#menu-icon {
	position: fixed;
	top: 5px;
	right: 5px;	
	width: 32px;
	padding: 5px;
	background-color: black;
	border-radius: 0px;
	border: 1px solid #F7C721;
}
#menu-icon:hover {
	cursor: pointer;
	opacity: .75;
}
.header {
	position: relative;
	width: 100%;	
	height: auto;	
	background-color: #153217;
	display: inline-block;
	text-align: center;
}
.header a {
	text-decoration: none;
	margin: 10px;	
}
.header a:hover {
	color: white;
}
.logo {			
	width: 100%;
	max-width: 600px;
}
#categories {
	margin-top: 50px;
	text-align: center;
}
.category {
	text-align: center;	
	vertical-align: top;
	margin: 25px;
	width: 100%;
	max-width: 300px;	
	height: 200px;	
	font-size: 32px;
	color: #F7C721;
	border: 1px solid #F7C721;
	border-radius: 5px;
	display: inline-block;
}
.category p {
	vertical-align: middle;
	margin-top: 75px;	
}
.category:hover {
	color: white;
	border: 1px solid white;
	cursor: pointer;
}
#menu-items {
	margin: 25px;
}
.item {
	background-color: #707070;
	vertical-align: top;
	border-radius: 5px;
	width: 100%;
	max-width: 400px;
	height: 110px;
	color: white;
	padding: 10px;
	margin: 10px;
	display: inline-block;
}
/*
.item:hover {
	background-color: #909090;
}
*/
.title {
	font-size: 12pt;
	font-weight: bold;	
}
.info {
	font-size: 10pt;
	font-style: italic;
	max-width: 500px;
}
.price {
	float: right;
	font-size: 12pt;
	color: #F7C721;
}
.button {
	border: 1px solid #F7C721;
	padding: 10px;
	margin: 10px;	
}
.button:hover {
	border: 1px solid white;
}
.close-button {
	font-size: 48pt;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 50px;
}
.close-button:hover {
	color: white;
	cursor: pointer;
}
#overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;	
	background-color: black;
	opacity: .9;
	z-index: 99;
	display: none;
}
@media only screen and (max-width: 600px) {
	.menu-items { margin: 5px; }
	.item { margin-left: 0px; width: 93%; }	
}