	 /* http://meyerweb.com/eric/tools/css/reset/ 
		   v2.0 | 20110126
		   License: none (public domain)
		*/

		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;
		}
		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;
		}

       /*don't touch the reset above*/


		/* Default Styles Below*/
	
	body {
			font-size: 20px;
		}

	#wrapper {
			max-width: 100%;
			background-color: #337AC1;
		}

	#grid-container {
			display: grid;
			grid-template-columns: 5fr 1fr;

		}

	header {
			padding: 2%;
			background-color: #337AC1;
			display: grid;
			grid-template-columns: 1fr 1fr;
		}

	nav ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 2px;
		}

	nav li a  {
	       display: block;
	       text-align: center;
	        font-family: 'Alice', serif;
	       color: white;
	       text-decoration: none;
	       font-size: 25px;
	    }


	#main {
	    	margin-left: 5%;
	    	width: 100%;
	    	min-height: 1500px;
	    	padding: 5%;
	    	background-color: #92C0DD;

	    }	

	footer {
	    	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    }

	footer p {
	    	color: white;
			font-family: 'Alice', serif;
	    }


	h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;

	    }

	h2 {
	    	color: black;
	    	font-family: 'Alice', serif;
	    	font-size: 1em;
	    	text-align: center;
	    	line-height: 7em;
	    }

	h3 {
	    	color: black;
	    	font-family: 'Alice', serif;
	    	font-size: 2em;
	    	text-align: center;
	    	line-height: 3em;

	    }


	.increase {
			font-size: 3.5em;
			text-align: center;
			font-family: 'Alice', serif;
			line-height: 2em;
		}

	p 	{
			color: black;
			font-family: 'Alice', serif;
			text-align: center;
			line-height: 2em;
		}

	hr{
			color: black;
		}

	a 	{
			text-align: center;
			display: block;
			color: black;
			font-family: 'Alice', serif;
			line-height: 2em;
			text-decoration: none;
	
		}


	img {
			border-bottom: 2px solid black;
			text-align: center;
			border-radius: 5%;
			width: 40%;
		}

	a:hover {
 		 color: #92C0DD;
		}





		/*mobile styles*/


		@media only screen and (min-width: 1px) and (max-width: 1000px){
  
 			#grid-container {
			display: grid;
			grid-template-columns: 1fr;
		}

		nav ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 1px;
		}

		nav li a  {
	       display: block;
	       text-align: center;
	       font-family: 'Alice', serif;
	       color: white;
	       text-decoration: none;
	       font-size: 14px;
	    }

	    header {
			padding: 2%;
			background-color: #337AC1;
			display: grid;
			grid-template-columns: 1fr 1fr;
			font-size: 14px;
		}

		 #main {
	    	height: auto;
	    	width: auto;
	    	padding: 5%;
	    	background-color: #92C0DD;
	    }

	     h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;

	    }

	     footer {
	    	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    }

	    footer p {
	    	color: white;
			font-family: 'Alice', serif;
	    }

	     h2 {
	    	color: black;
	    	font-family: 'Alice', serif;
	    	font-size: 1em;
	    	text-align: center;
	    	line-height: 1em;
	    }

	    h3 {
	    	color: black;
	    	font-family: 'Alice', serif;
	    	font-size: 2em;
	    	text-align: center;
	    	line-height: 1.5em;

	    }


		.increase {
			font-size: 3em;
			text-align: center;
			font-family: 'Alice', serif;
			line-height: 1em;
		}

		p {
			color: black;
			font-family: 'Alice', serif;
			text-align: center;
			line-height: 2em;
		}

		img {
			width: 100%;
		}


}
