 /* 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 {
			background-image: linear-gradient(#2A1B3D, #44318D);
			font-size: 25px;
		}

		#wrapper {
			max-width: 900px;
			margin: 5% auto;
			background-color: #B3A4B3B6;
		}

		#grid-container {
			display: grid;
			grid-template-columns: 1fr;
		}

		header {
			background-color: #D83F87;
			padding: 2%;
			display: grid;
			grid-template-columns: 1fr 1fr;
		}

		h1 {
			font-family: 'Acme', sans-serif;
			font-size: 1.5em;
		}

		h4 {
			font-family: 'Acme', sans-serif;
			font-size: 1.3em;
		}

		nav {
			padding: 2%;
		}

		nav ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 2px;
		}

	    nav li a  {
	       display: block;
	       text-align: center;
	       font-family: 'Acme', sans-serif;
	    }


	    #main {
	    	min-height: 400px;
	    	padding: 5%;
	    	text-align: center;
	    }

	    p {
	    	font-family: 'Montserrat', sans-serif;
	    	line-height: 1.6;
	    }

	    #image {
	    	padding: 2%;
	    }

	    footer {
	    	background-color: #846AA6;
	    	padding: 5%;
	    	text-align: center;
	    	font-family: 'Acme', sans-serif;
	    }

	    a:link, a:visited {
			color: #44318D;
			text-decoration: none;
		}

		a:hover, a:focus {
			color: #A4B3B6;
		}

	    /*phone styles */
	 @media only screen and (max-width: 750px) {

	 	header {
	 		padding: 2%;
			display: grid;
			grid-template-columns: 1fr;
				}

		h1 {
			text-align: center;
		}

	 }

	    /*tablet styles */
    @media only screen and (min-width: 600px) and (max-width: 800px) {

    }


       /* desktop styles */
    @media only screen and (min-width: 801px) {

    }