@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	margin: 0;
	background-color: rgb(50,50,50);
	font-family: arial;
}
img {
	width: 200px;
	height: 200px;
	margin: 10px;
}
a {
	color: yellow;
}

#webpage {
	width: 100%;
	position: absolute;
}

.nav {
    width: 100%;
	display: inline-block;
    margin: 0;
	position: fixed;
	z-index: 1;
}
.nav a {
	text-decoration: none;
	color: rgba(200,200,200,0.8);
	transition: 0.3s;
}
.nav a:hover, .nav a:active {
	color: rgba(250,100,250,1);
}
.nav table {
	width: 100%;
	height: 70px;
}
.nav td {
	text-align: center;
	background-color: black;
	width: 16%;
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(255,255,255,0.2);
	border-bottom: 2px solid rgba(255,255,255,0.2);
	box-shadow: 0px 2px 2px rgba(50,50,50,0.6);
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 0 10px;
	cursor: pointer;
}
.nav td:hover, .nav td:active {
	transform: scale(1.1, 1.1);
	background-color: rgb(20,50,50);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}

#content {
	margin-top: 100px;
	color: rgb(220,220,220);
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	padding-bottom: 50px;
}
#content tr:nth-child(even) {
	background-color: rgb(50,50,50);
}
#content tr:nth-child(odd) {
	background-color: rgb(60,60,60);
}

.tableheader {
	text-align: center;
	background-color: rgb(10,10,10);
}
#table_detail {
	text-align: center;
}

#drinks table, #snacks table, #instantfoods table {
	border-collapse: collapse;
	margin-bottom: 25px;
	width: 100%;
}
#drinks td, #snacks td, #instantfoods td {
	padding: 5px 10px;
	border: 1px solid rgb(100,100,100);
}
#drinksElem span, #snacksElem span, #instantfoodsElem span {
	padding: 5px 10px;
	font-size:1.1em;
	background-color: rgb(200,200,200);
	color: rgb(20,20,20);
	border-radius: 0 5px 5px 0;
}
#drinksElem, #snacksElem, #instantfoodsElem {
	border-left: 3px solid rgb(200,200,200);
}
