body{background-image:url("greywallpaper.jpg");}

#wrapper
{
	
	width:100%;
	height:100%;
	background-color:lightpurple;
	margin:auto;
	
}

#header

{
	width:80%;
	height:19.8%;
	background-color:white;
	margin:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
	
}

#footer
{
	width:80%;
	height:9%;
	background-color:transparent;
	margin:auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#menu

{
	flex-wrap:wrap;
	width:80%;
	height:5.5%;
	background-color:LightCoral ;
	margin:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border:1px solid black;
	
}

#content
{
	flex-wrap:wrap;
	width:80%;
	height:70%;
	background-color:FloralWhite;
	margin:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
	
}



#navigation ul
{
	list-style: none;
	margin:0;
	padding:0;
}

#navigation ul li
{
	position:relative;
	float:left;
	width:12%;

}

#navigation ul a
{
	display:block;
	text-decoration:none;
	color:black;
	text-align:center;
	padding: 8% 6%;
	font-size:16px;
  font-family:lucida console;
}

#navigation ul li a:hover
{
	background-color:cream;
	color:lightpurple;
	background-color:FloralWhite;
}

#navigation ul ul
{
	display:none;
	position:absolute;
	background-color:silver;
	width:100%;
	z-index:1;
	
}

#navigation ul ul li
{
	width:100%
}

#navigation ul ul a
{
	padding:8% 6%;
	border-bottom:1px solid gred;
	
}

#navigation ul li:hover > ul
{
	display:block;
}

#menu-container
{
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(1) translate(-50%); /* Scaled down for a better Try-it experience (change to 1 for full scale) */
	transform: scale(1) translate(-50%); /* Scaled down for a better Try-it experience (change to 1 for full scale) */
	left: 50%;
	position: absolute;
	width: 1366px;
	height: 786px;
	border-width: 24px 24px 80px;
	background-color:DimGray;
	font-family: arial;
	color: gray;
}