/*==============Google font============*/

/* This is an example of how to use google fonts. You don't need to do anything with this code, it is just here as a reference. Notice that you include this @import line, and then you use the font-family like normal everywhere else in the document. */

@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville);



body{
	font-family: 'Libre Baskerville', serif;
	font-size: .8em;
	width: 1000px;
	margin: 20px auto;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Arial Black", Gadget, sans-serif;
	}

header h1{
	text-transform: capitalize;
	font-size: 175%;
	color: #8b792f;
	letter-spacing: 0.35em;
}

header nav ul {
	background-color: #f2cc0f;
	border: 2px solid rgb(139, 121, 47);
	width: 20px;
	height: 200px;
	padding-top: 45px;
}

header nav li{
	background-color: rgb(139, 121, 47);
	box-shadow: 3px 3px 3px #111;
	width: 220px;
	padding: 6px;
	padding-left: 5px;
	margin-bottom: 7px;
	margin-left: -8px;
	list-style-position: inside;
	list-style-type: none;             
}

nav a:link{
	
	color: #f3fda4;
	text-decoration: none;
}

nav a:visited{
	
	color: #f3fda4;
	text-decoration: none;
}

nav a:hover{
	
	color: #deb340;
	text-decoration: none;
}

nav a:active{
	
	color: #ffffff;
	text-decoration: none;
}


main {
	background-color: #f8d90c;
	border: 2px solid rgb(139, 121, 47);
	padding: 30px;
}

article {
	background-color: #fafcca;
	border: 1px solid #af9c40;
	padding: 30px;
	/*margin-top: 40px;*/ 
}
h2{
	font-size: 14px;
	font-style: italic;
}

section h2{
	font-size: 20px;
	font-style: normal;
	color: #9f8c54;
	background-color: white;
	border: 1px solid #a09948;
	padding: 10px;
	border-radius: 20px 20px 0px 20px;
	display: inline;
}

#bees article {
	margin-top: 60px;
	}


#blossoms article {
	overflow: scroll;
	height: 500px;
	margin-top: 40px;
	margin-bottom: 20px;
}


footer nav li{
	display: inline;
	text-decoration: underline;
	padding-right: 15px;
	color: #ffffd3;
}

footer {
	text-align: center;
	background-color: #aa974a;
	padding: 5px;
	border-radius: 0px 0px 20px 20px;
	margin-bottom: 20px;
}

footer nav a:link {
	color: #ffffd3;
}

footer nav a:visited {
	color: #f3fda4;
}
footer nav a:hover {
	color: #deb340;
}
footer nav a:active {
	color: #ffffff;
}

