/* 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*/

	body {
			font-size: 20px;
			font-family: 'Alice', serif;
		}

	#wrapper {
			 display: flex;
  			min-height: 100vh;
  			width: auto;
  			  flex-direction: column;
  			  flex-direction: column;
 			justify-content: space-between;
 			background-color: #337AC1;
			width: auto;		
		}

	#grid-container {
			display: grid;
			grid-template-columns: 3fr 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 {
	    	height: 500px;
	    	width: auto;
	    	padding: 5%;
	    	background-color: #92C0DD;
	    }


	footer {
	      	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }

	h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;
	    }


	.update {
			font-size: 3.1em;
			border-bottom: 2px solid black;
		}


	p {
			font-size: 19px;
			width: 70%;
			color: black;
			font-family: 'Alice', serif;
			line-height: 1.5em;
		}


	#boy{
			border-radius: 50%;
			position: absolute;
			right: 100px;
			background-image: url('img/boy.png');	
			overflow: hidden;
			background-repeat: no-repeat;

		}

	hr {
			text-align: left;
		}

/* mouse over link */
	a:hover {
 		 color: #92C0DD;
	}



		/*Mobile Styles*/
@media only screen and (max-width: 600px) {

#grid-container {
			display: grid;
			grid-template-columns: 1fr;
		}


	nav li a  {
	       font-size: 15px;
	    }

		   #main {
	    	height: auto;
	    	width: auto;
	    	background-color: #92C0DD;
	    }

	h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;
	    }

	   
	body {
	   		width: auto;
			font-size: 15px;
			text-align: center;
		}

	p {
			font-size: 19px;
			width: 100%;
			line-height: 1.5em;
		}


		footer {
	      	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }

	#boy{
			position: relative;
			width: 100%;
			height: auto;
			border-radius: 50%;
			background-repeat: no-repeat;
			background-position: bottom center;
			padding: 10px;

		}

	}




/*Tablet Styles*/

@media only screen and (min-width: 601px) and (max-width: 1000px) {

#grid-container {
			display: grid;
			grid-template-columns: 1fr;
		}


	    nav li a  {
	       font-size: 15px;
	    }

		   #main {
	    	height: auto;
	    	width: auto;
	    	background-color: #92C0DD;
	    }

	    h1 {
	    	color: white;
	    	font-family: 'Homemade Apple', cursive;
	    	font-size: 1.5em;
	    }

	   
	   body {
	   		width: auto;
			font-size: 15px;
			text-align: center;
		}

		p {
			font-size: 19px;
			width: 100%;
			line-height: 1.5em;
		}


		footer {
	      	padding: 1%;
	    	text-align: center;
	    	background-color: #337AC1;
	    	font-family: 'Alice', serif;
	    	color: white;
	    }

	#boy{
			position: relative;
			width: 100%;
			height: auto;
			border-radius: 50%;
			background-repeat: no-repeat;
			background-position: bottom center;
			overflow: hidden;
			padding: 10px;
			object-fit: contain;

		}

	}

/*Desktop Styles*/
@media only screen and (min-width: 1001px) {


		body {
	   		width: auto;
			font-size: 20px;
			text-align: left;
		}

		p {
			font-size: 21px;
			width: 80%;
			line-height: 1.5em;
		}
	}