/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	background-color: white;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Hamburger Menu / navigation bar */
nav {
	background-color: #9d1c20;
	z-index: 100;
}
#hamburger_menu {
	background-color: #9d1c20;
	display: none;
	width: auto;
    padding: 0;
    margin-bottom: 0;
	left: 0;
}
nav a {
	overflow: hidden;
	z-index: 99;
    color: white;
    padding: 10px;
    text-decoration: none;
	display: block;
}
.hamburger_menu_icon {
	background-color: #4a150b;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
#logo {
	padding: 0px;
}
#logo img {
	height: 35px;
	margin: 5px;
}
.hamburger_menu_icon:hover {
	background-color: black;
}
#hamburger_menu a {
	background-color: grey;
}
#hamburger_menu a:hover {
    background-color: black;
}
/* Title of webpage :D */
h1 {
	font-size: 40px;
	text-align: center;
	margin: 5px;
	padding: 5px;
}
/* Footer*/
footer {
	background-color: #4a150b;
	color: white;
	padding: 25px 10px;
	text-align: left;
	font-size: 12px;
}

footer p {
	color: white;
	font-size: 12px;
}

/* Menu Items */
#food_items_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#food_items_container div {
    background-color: white;
    width: 85%;
    padding: 10px;
    margin-bottom: 15px;
	box-shadow: rgb(45, 45, 45) 0px 0px 5px;
}
h2 {
	font-size: 20px;
	font-weight: bold;
}
.Menu_Item_Price {
	color: red;
	font-size: 15px;
}
.Menu_Item_Additional_Price {
	font-style: italic;
	font-size: 14px;
}
p {
	font-size: 15px;
	margin-top: 5px;
	color: rgb(20, 20, 20);
}


/* 
Why did I put this into a folder seperate from the other CSS files?
idk :,D
*/