@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,600,700);
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #grey;
	color: #fafafa;
	padding: 2%;
	font-family: 'josefin sans', sans-serif;
	font-size: 22px;
	line-height: 26px;
	text-align: justify;
}

Header {
	text-align: center;
	font-family: 'josefin sans', sans-serif;
	background: #grey;


}
p {
	text-indent: 5%;
}
h2 {
	text-align: center;
	line-height: 125%;
}
/*---start navigation---*/
nav {
	width: 100%;
	margin: auto;
	overflow: hidden;
}
nav ul {
	list-style: none;
	overflow: hidden;
}
nav li a {     /*---for link---*/
	background-color: #737373;
	border-right: 1px solid #454545;
	color: #fafafa;
	display: block;
	float: left;
	font-size:	120%; /*---120% of the body size font 22 ---*/
	font-weight: 600;
	padding: 1%;
	text-align: center;
	text-decoration: none;
	width: 16.65%;    /*---one sixth of 100% for 6 nav buttons---*/
	transition: background 0.5s ease;
}
nav li a:hover, nav li.active a {
	background: #DADADA;
	color: #454545;
}
nav li: last-child a {
	border:none;
}
/*---end navigation---*/

.banner img {
	width: 100% !important;
	height: auto;
}
ul {
   list-style-type: none;
}
section {
	float: left;
	width: 60%;
	text-align: center;
	list-style: none;
	padding: 2%;
	margin: 1% 0;
    background-color: #6b6b6b;

}
aside {
	float: right;
	width: 38s%;
	padding: 2%;
	margin: 1% 0;
	background-color:#6b6b6b;

}
aside a{
	color: orange;
	text-decoration: none;
}
section a{
	color: orange;
	text-decoration: none;
}
footer {
	text-align: center;
	width: 100%;
	padding: 2%;
	margin: 1% 0;
	background-color: #6b6b6b;
}
.one-third {
	float:left;
	width: 31%;
	padding: 1%;
	margin: 0 1%;
}
/*----media queries---*/
@media only screen and (max-width:780px)
	nav {
		margin: 2% auto;
	}
	nav li a {
		width: 33.3%;
		font-size: 90%;
		padding-top: 2%;
		padding-bottom: 2%;
		border-bottom: 1px solid #454545;
}
nav li:nth-child(3) a {
	border-right:none;
}
section {
	width: 100%;
}
aside {
	width: 100%;
	text-align: center;

}
.one-third {
	width: 100%;
}
h1 {
	font-style:italic;
	font-size: 150%;
	color: #3a2b14;
}
h2 {
	font-size: 105%;
}
p {
	font-style: italic;

}


@media only screen and (max-width:580px)
	nav li a {
		width: 50%;
		font-size: 82%;

}
nav li:nth-child(even) a {
	border-right:1px solid #454545;
}
nav li:nth-child(3) a {
	border-right:none;
}
h2 {
	font-size: 95%;
}
p {
	font-size: 88%;
}
