	/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
	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.5;
	}
	
	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;
	}	 

	/* end reset */


	/* default */
	body{
		font-size: 20px;
		font-family: Helvetica, sans-serif;
		background-color:#731224;
		color: #BF4F26;
	}

	#wrapper {
		width: auto;
		max-width: 1000px;
		margin: 2% auto;
		padding: 5%;
		background-color: #BF4F26;

	}

	header {
		font-size: 2em;
		display: block;
		color: #731224;
		margin: 0;
		background-color: #BF4F26;
	}


	div#text{
		text-align: center;
	}

	h1 {
		margin: 0;
		text-align: center;
		font-size: 2em;
		font-family: 'Nerko One', cursive;
		background-color: #731224;
		text-shadow: 1px 1px #A68B03;
		font-weight: 900;
		color: #D98E04;
		
	}


	a{

	}


	a:link, a:visited {
		font-size: 2em;
	font-family: Helvetica, sans-serif;
	  background-color: #A68B03;
	  color: #731224;
	  padding: 14px 25px;
	  text-align: center;
	  text-decoration: none;
	  display: inline-block;
	}



	img {
	

	}

	h1 p {
		font-size: 20px;
		font-family: Helvetica, sans-serif;
		background-color: #BF4F26;
	}	

	#data {
			text-align: center;
		
		margin: 0;
		font-size: .8em;
		background-color: #D99152;
		color: #731224;
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: auto 1fr 1fr 1fr;
			grid-gap: 5px;
			grid-template-areas:
			  "aa"
		      "bb"
		      "cc";
		}

	span {
		font-weight: bold;
	}

	footer {
		font-weight: bold;
		border: .5em solid #731224;
		background-color: #BF4F26;
		color: #731224;
	}

	/*tablet styles*/
	@media only screen and (min-width: 751px) and (max-width: 1000px) {

		#data  {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto 1fr;
			grid-gap: 5px;
			grid-template-areas:
			  "aa bb"
		      "cc cc";
		}
	}


	/*desktop styles*/
	@media only screen and (min-width: 1001px) {
		header {
			display: grid;
		

			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto 1fr 1fr;
			grid-gap: 3px;
			grid-template-areas:
			  "head head"
		      "desc desc";
		}

		#data  {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto 1fr 1fr;
			grid-gap: 5px;
			grid-template-areas:
			  "aa bb"
		      "cc cc";
		}

	}

	
	img{
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	#text{
		grid-area: desc;
	}

	h1{
		grid-area: head;
	}

	a#a{
		grid-area: aa;
	}

	a#b{
		grid-area: bb;
	}

	a#c{
		grid-area: cc;
	}

#shh {
		display: block;
		border: .5em solid #731224;
		margin: 0;
		background-color: #D99152;
	}