/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	
margin: 0;	
padding: 0;	
border: 0;	
font-size: 100%;	
font: inherit;	
vertical-align: baseline;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	
display: block;}

body {	
line-height: 1.5;
}

ol, ul {	
list-style: none;
}

blockquote, q {	
quotes: none;
}

blockquote:before, blockquote:after,q:before, q:after {	
content: '';	
content: none;
}

table {	
border-collapse: collapse;	border-spacing: 0;
}	

/* end reset*/

	
/* COLOR PALETTE
#04ADBF - Blue
#04BFBF - Lighter Blue
#025959 - Green
#A0A603 - Mildew Green
#F2E0C9 - Off-white
#FFFAF1 - White
#F2F3F4 - LIGHT GREY
#F9F9F3 - OFF-WHITE v2.0

SECOND COLOR PALETTE
#45858C - Blue
#A0D9D9 - Lighter Blue
#D9B166 - Orange
#BF9663 - Tan
#A62D2D - Red/Maroon

FONTS:
paragraphs - 'Montserrat', sans-serif;
paragraph2 - 'Raleway', sans-serif;
Title - 'Nothing You Could Do', cursive;
*/
	
/* default styles*/



body {
	font-family: 'Roboto Slab', serif;
	font-size: 18px;
	background-color: #A0D9D9;
}

#wrapper {
	width: 90%;
	margin:2% auto;
	background-color: #35A6A6;
}

header {
	text-align: center;
	background: #025959;
	color: #F2E0C9;
}
		
h1  {
	font-size: 3.5em;
	font-weight: bold;
	font-family: 'Nothing You Could Do', cursive;
}

h2 {
	font-size: 35px;
	font-family: 'Averia Libre', cursive;
}

h3 {
	font-size: 15px;
}

nav {
	display: none;
	width: auto;
	padding:3px;
	margin: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 13px;
}

#ham-icon  {
	display: block;
	font-size: 2em;
	width: auto;
	margin: 0 auto;
	color: #F2E0C9;
}

#close-icon  {
	display: block;
	font-size: 1.5em;
	width: auto;
	margin: 0 auto;
	color: #F2E0C9;
}

a.menu-icon:link, a.menu-icon:visited {
   color: black;
   text-decoration: none;
}

a.menu-icon:hover, a.menu-icon:focus {
   color: gray;
}

nav ul {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 3%;
	padding: 1%;
}
	
nav li {
	display: block;
}


nav li a {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 4px;
}


nav li a:link, nav li a:visited  {
	color: #000;
	background: #F2E0C9;
}

nav li a:hover, nav li a:focus {
	color: #F2E0C9;
	background: #BF9663;
	border: 2px solid black;
}

	
.clear {
	clear: both;
}

footer {
	text-align: center;
	font-size: 12px;
}

a:link, a:visited  {
	color: #025959;
	text-decoration: none;
}

a:hover, a:focus {
	color: #F9F9F3;
	text-decoration: none;
}

img {
	background-color: #FFFAF1; 
  	border-radius: 4px;  
 	padding: 5px;
}

p {
	font-size: 17px;
	font-family: 'Roboto Slab', serif;
	line-height: 1.4;
}

#first img {
	width: 50%;
	height: auto;
	margin-left: 25%;
}

#first, #source{
	padding: 3%;
}

#culture, #geography {
	padding: 3%;
}
#culture img {
	width: 99%;
	height: auto;
}

footer p{
	padding: 1%;
	background: #A0D9D9;
	font-size: 12px;
}

#source {
	background: #04BFBF;
	margin: 4%;
	border-radius: 5px;
}

#source ul{
	font-size: 16px;
}

/* tablet styles */
@media only screen and (min-width: 600px) and (max-width: 700px) {


#wrapper {
	width:90%;
}
	
nav ul {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	display: flex;
	justify-content: center;

}	

nav {
	display: block !important;
}

#ham-icon  {
	display: none !important;
}

#close-icon  {
	display: none;
 }


}


/* desktop styles */
@media only screen and (min-width: 701px) {

 #wrapper {
		width:80%;
}

		
 nav ul {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	display: flex;
	justify-content: center;

}

nav {
	display: block !important;
}

#ham-icon  {
	display: none !important;
}

#close-icon  {
	display: none;
  }

}



