 /* 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;
			font-family: 'Alice', serif;
		}

		#wrapper {
			 display: grid;
  			height: auto;
  			width: auto;
 			background-color: #337AC1;
		}


		#grid-container {
			display: grid;
			width: auto;
			height: auto;
			grid-template-columns: 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: 2%;
	    	margin-right: 2%;
	    	height: 30vw;
	    	width: auto;
	    	padding: 3%;
	    	background-color: #92C0DD;
	    }


	    footer {
	    	width: auto;
	    	height: auto;
	      	padding: 3%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }

	    h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;
	    }


		.increase {
			font-size: 3.5em;
			text-align: center;
			border-bottom: 2px solid black;
		}

		img {
			border-radius: 10%;
		}

		.center {
  			display: block;
 			margin-left: auto;
  			margin-right: auto;
  			width: 20%;
			color: black;
			font-family: 'Alice', serif;
			}

		p {
			font-size: 23px;
			text-align: center;
			line-height: 1.5em;
		}

		a {
			color: black;
			font-family: 'Alice', serif;
			text-decoration: none;
		}

		a:hover {
 		 color: #92C0DD;

 		}





		/*mobile styles*/

		@media only screen and (max-width: 600px) {


	body {
			font-size: 20px;
		}

		#wrapper {
			 display: flex;
  			min-height: 100vh;
  			  flex-direction: column;
  			  flex-direction: column;
 			justify-content: space-between;
			width: auto;
		}


			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: 1px;
		}

	    nav li a  {
	       color: white;
	       font-size: 20px;
	    }


	    #main {
	    	height: auto;
	    	width: auto;
	    	padding: 20%;
	    }
	   

		.increase {
			border-bottom: 2px solid black;
		}

		.center {
  			display: block;
 			margin-left: auto;
  			margin-right: auto;
  			width: 20%;
			}

		p {
			width: auto;
			font-size: 18px;
			color: black;
			line-height: 1.5em;
		}

	}


	/*tablet styles*/


	@media only screen and (min-width: 601px) and (max-width: 1000px) {



  #main {
	    	height: auto;
	    	width: auto;
	    	padding: 8%;
	    }
	   


 footer {
	    	width: auto;
	    	height: auto;
	      	padding: 14%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }



	}