/*Navigation bar Logo*/
nav img
{
	margin-left:1%;
}
/*Set each list item to display in a line*/
.handle
{
	display:block;
	text-align:right;
}

/*Hide the navigation bar(ul) */
nav ul
{
	max-height:0px;
}
/*Class to show the navigation once the menu is clicked/tapped*/
.showing
{
	max-height:20em;
}
/*Style the list items*/
nav ul li
{
	box-sizing:border-box;
	width:100%;
	padding:15px;
}

/*DIV at top*/
.welcome
{
	background-color:#C8C8C8;
	overflow:hidden;
}

/*DIV containing written paragraphs*/
.content
{
	margin-left:2%;
	margin-right:2%;;
}

/*Div holding wider content*/
.wide /*For wider page*/
{
	margin-left:0%;
	margin-right:0%;
}

/*Footer*/
#foot section
{
	width:90%;
}

