main{
	max-width: 80em;
	margin: 0 auto;
	padding: 10px;
}


body {
	background-color:rgb(206, 228, 241);
	padding: 0;
	margin: 0;
	font-family: Roboto, 'Helvetica Neue', sans-serif;
}


header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
	background-color: lightgreen;
	padding: 0;
}
section.headings{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

section.headings h1{
    font-size: 25px; 
    margin: 0;
}

header img {
	width: 100px;
	margin-right: 7px;
	padding-bottom: 16px;
	margin-top: 1.4em;
    margin-left: 0;
    
}

.moto {
	font-style: italic;
	letter-spacing: 1pt;
	color: black;
	margin-left: 0;
	font-size: 20px;
	

}

.h2{
	display: block;
	text-align: center;
	font-size: 25px;
}

.navigation li:not(:first-child) {
	display: block;
	margin: .2rem 2%;
	background-color: transparent;
	border: none;
	font-size: 1.6rem;
	color:white;


}

nav {
	background-color: green;
	margin: 0 auto;
	max-width: 100%;
	font-size: 20px;
}

.navigation{
	max-width: 90em;
	list-style: none;
	padding: 0;
	margin: 0;
}


.navigation a{
	display: block;
	padding: 0.75rem;
	text-align: left;
	text-decoration: none;
	color: black;
	font-weight: 500;
}

.navigation a:hover{
	color:gold;
}
nav ul {
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.navigation li {
	display: none;
}


nav ul li a{
	display: block;
	padding: 8rem 2%;
	text-decoration: none;
	color: #000;
	margin: 0;
	
}


nav ul li.active a {
	background-color: rgb(207, 228, 241);
	margin: 0;
}

nav ul li a:hover{
	background-color:rgba(0, 0, 0, 0.4);
}


.responsive li {
	display: block;
}

/*heroArea*/
.heroArea{
	display: flex;
	position: relative;
	margin: 10px auto;
	width: 960px;
	height: 380px;

}

.heroArea img{
	margin: 10px auto;
	max-width: 100%;
	height: 380px;
	
}

/*weather Summary box*/
.weatherSummary{
	position: absolute;
	top: 30px;
	left: 30px;
	background-color: rgb(206, 228, 241);
	border: .5px solid;
	padding: 10px;
	box-shadow: 0 0 20px black;
	grid-auto-columns: auto auto;
	
}
.weatherSummary h2{
	grid-column: 1/3;
	margin: 0;
}
.weatherSummary label{
	text-align: right;
	font-weight: bold;
}

.weatherSummary p{
	margin: 0;
	padding: 2px;
}

/*five day forecast*/
h2{
	font-weight: bold;
	text-align: center;
	
}

.forecastDay{
	display:flex;
	width: 100%;
	border: 2px solid black;
	text-align: center;
}
.five-day{
	display: grid;
	margin:auto;
	grid-template-columns: repeat(5, 1fr);
	max-width: 650px;
}

.five-day section{
	border: solid .5px black;
	padding: 0;
	align-items: center;
}

.five-day div{
	margin: 0 auto;
	
}

.five-day h3{
	background:  green;
	text-align: center;
	padding: .5rem;
	margin: 0;
}


.five-day img{
	width: 60px;
	background-position: -11px -13px;
	transform: scale(.9);
	
	
}

.five-day span{
	text-align: center;
	padding: .5rem;
	display: block;
}


/*article area*/
h4{
	font-weight: bold;
	text-align: center;
	
}

.articleArea img{
	float:right;
	width: 50%;
	max-width: 400px;
	height: auto;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px black;
	object-fit: cover;
	
}

section.articleArea{
	position: relative;
	margin: 10px auto;
	border: 1px solid black;
	padding: 2rem;
	max-width: 100%;
}
section.articleArea p{
	margin-left: 0 auto;
	padding: 1rem;
	max-width: 960px;
}

/*contact area*/

.contactArea{
	display: flex;
	position: relative;
	max-width: 100%;

}
.contactInfo{
	margin: 0 auto;
	background-color: lightgreen ;
	justify-items: center;
	text-align: center;
	
}

#mapImg{
	justify-self: start;
	height: auto;
	width: 100%;
	max-width: 400px;
	border: 0.5em black;
}


div.socialIcon{
	width: 40px;
	align-items: center;
	
}

.prestonPancakes{
	display: none;
}


/*footer*/
footer{
	background-color:lightgreen;
	font-family: 'Trebuchet MS', sans-serif;
	margin: 0 auto;
	max-width: 100%;

}

#footerBar{
	background-color: green;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;

}
footer p{
	font-size: 20px;
}










/*----- Clearfix: Force an Element not to collapse -----*/
.clearfix:after {
	content: "";
	display: table;
	clear: both;
  }

  