html{
	width:100%;
	height:100%;
	}
body {
	width:100%;
	height:100%;
	font-family: Georgia, "Times New Roman",
		Times, serif;
	color: black;
			 background-color: silver;
}
.content{
	position: relative;
	padding: 0;
	float: left;
	width:90%;
	height:100%;
}
ul.navbar_list {
	list-style-type: none;
	padding: 0;
	margin: 0 0.5%;
	position: relative;
	float: left;
	width: 7%;
	height: 100%;
	background-color: blue;
	background: linear-gradient(blue, darkblue);
}
h1 {
	font-family: Helvetica, Geneva, Arial,
		SunSans-Regular, sans-serif 
}

.navbar_list_element {
	margin: 1em 0;
	background: darkgray;
	background: linear-gradient(lightgray, gray, darkgray);
}
.navbar_list_element a {
	text-decoration: none; 
}
a:link {
	color: blue 
}
a:visited {
	color: purple 
}
address {
	margin-top: 1em;
	padding-top: 1em;
	border-top: thin dotted 
}

.ingredient{
	background-color: green;
	}


@media only screen and (max-device-width: 480px) {

	
.content{
	position: relative;
	padding-top: 0em;
	float: top;
	width:100%;
}
ul.navbar_list {
	list-style-type: none;
	padding: 0;
	margin: 0 0.5%;
	position: relative;
	float: top;
	width: 100%;
	height:18em;
	background-color: blue;
	background: linear-gradient(blue, darkblue);
}
.navbar_list_element {
	width:100%;
	height:3em;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	background: darkgray;
	background: linear-gradient(lightgray, gray, darkgray);
	line-height: 3em;
	text-align: center;
	font-size: 3em;
	
}

}
