/* 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;
            background-color: #23292C;
		}

		#wrapper {
			width: 100%;
			background-color: white;
		}

		header {
			padding: 1% 2% 1% 2%;
            color: white;
            font-family: 'Varela', sans-serif;
			font-family: 'Varela Round', sans-serif;
            letter-spacing: 2px;
			background-color: #23292C;
			position: fixed;
			top: 0;
			width: 100%;
		}

        h1 {
            font-family: 'Pacifico', cursive;
			font-size: 45px;
        }

		h2 {
			font-family: 'Kreon', serif;
			font-family: 'Varela', sans-serif;
			font-size: 45px;
			color: #17191E;
			border-bottom: 1px solid #D6CEBD;
			padding-bottom: 10px;
		}

		h3 {
			font-family: 'Varela', sans-serif;
			font-size: 30px;
			color: #FF9E15;
			height: 30px;
		}

		nav {
			padding: 2% 10% 0% 2%;
            font-size: 15px;
		}

		nav ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 2px;
		}

	    nav li a  {
	       display: block;
	       text-align: center;
           padding: 0 3% 0 3%;
	    }

        p {
            font-family: 'Nunito', sans-serif;
			font-family: 'Varela', sans-serif;
			line-height: 1.5em;
			padding-top: 2%;
        }

		ul {
			line-height: 1.5em;
			font-family: 'Varela', sans-serif;
			font-size: 1em;
			padding-left: 1em;
			padding-bottom: 10px;
		}

		.list::before {
			content: "\226B";
			padding-right: 0.5em;
			color: #FF9E15;
			font-size: 0.9em;

		}

		#gallery_container, #webdev_container {
			margin-top: 50px;
		}


	    #main {
	    	min-height: 400px;
	    	padding: 5% 10% 5% 10%;
			background-color: white;
	    }

	    footer {
	    	padding: 3%;
	    	text-align: center;
            font-family: 'Varela', sans-serif;
            font-size: 15px;
			height: 15px;
			background-color: #23292C;
			color: white;
			font-family: 'Varela Round', sans-serif;
			letter-spacing: 1px;

	    }

        footer span {
            font-size: 10px;
        }

        header a:link, header a:visited {
            color: white;
            text-decoration: none;
        }
        
        header a:hover, header a:focus {
			transition: 0.1s;
            color: white;
            border-bottom: 2px solid #809796;
			font-size: 16px;
        }

		figure {
			width: 200px;
		}

		img {
			width: 100%;
		}

		#email {
			font-size: 1.1em;
			font-style: italic;
		}

		.right, .left, .half {
			padding: 3%;
			box-shadow: 10px 10px 20px #D6CEBD;
			border-radius: 25px;
			transition: 0.3s;
		}

		p a:link, p a:visited {
			text-decoration: none;
			color: black;
		}

		p a:hover, p a:focus {
			transition: 0.1s;
			color: #289e98;
		}



	/* mobile styles */
    @media only screen and (max-width: 599px) {
		#wrapper {
			margin-top: 85px;
		}

		.right, .left, .half {
			margin-bottom: 100px;
		}

		img, iframe {
			padding-bottom: 30px;
		}

		h3 {
			padding-bottom: 30px;
		}
	}

	/* tablet styles */
    @media only screen and (min-width: 600px) and (max-width: 800px) {
		#wrapper {
			margin-top:110px;
		}

		.right, .left, .half {
			margin-bottom: 100px;
		}

		img, iframe {
			padding-bottom: 30px;
		}

		figure {
			padding-left: 30%;
			padding-right: 30%;
		}

		h3 {
			padding-bottom: 10px;
		}
	}

	/* desktop styles */
    @media only screen and (min-width: 801px) {
		header {
			display: grid;
			grid-template-columns: 1fr 1fr;
		}

		#wrapper {
			margin-top:75px;
		}

		#grid-container {
			display: grid;
			grid-template-columns: 1fr 8fr 1fr;
		}

		#main {
			grid-column: 2;
		}

		#gallery_container {
			display: grid;
			grid-template-rows: 1fr 1fr 1fr;
			grid-gap: 100px;
			padding: 3%;
		}

		#webdev_container {
			display: grid;
			grid-template-rows: 1fr 1fr 1fr;
			grid-gap: 100px;
			padding: 3%;
		}

		.right {
			display: grid;
			grid-template-columns: 1fr 2fr;
		}

		.left {
			display: grid;
			grid-template-columns: 2fr 1fr;
		}

		.half {
			display: grid;
			grid-template-columns: 1fr 1fr;
		}

		#portrait {
			grid-column: 1 / 2;
			grid-row: 1 / 2;
		}

		#h3_one, #h3_three {
			grid-column: 2 / 3;
			grid-row: 1;
		}

		#p_one, #p_three {
			grid-column: 2 / 3;
			grid-row: 1;
			padding-top: 50px;
		}

		#inforgraphic {
			grid-column: 2 / 3;
			grid-row: 2;
			padding-left: 30%;
		}

		#h3_two {
			grid-column: 1 / 2;
			grid-row: 2;
		}

		#p_two {
			grid-column: 1 / 2;
			grid-row: 2;
			padding-top: 50px;
		}

		#h3_righthalf {
			grid-column: 2 / 3;
			grid-row: 1;
		}

		#p_righthalf {
			grid-column: 2 / 3;
			grid-row: 1;
			padding-top: 50px;
		}

		#PSA {
			padding-top: 14%;
		}
	}