/* 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;
}

/*ends reset*/




/*default styles*/

/** {
	border: 1px solid red;
}*/

body {
	font-family: 'Georgia', serif;
	font-size: 25px;
	/*background-image: url(images/apple-background.png);*/			background-repeat: no-repeat;
	background-size: auto;
	background-color: #715D4C;
   margin: 0;
   padding: 0;
   line-height: 1.6;
}

#wrapper {
	width: 90%;
	max-width: 1000px;
	margin: 5% auto;
	padding: 0%;
	
}

.crisp {
	text-align: center;
    background-color: #606C38;
    padding: 50px 30px;
    color: white;
    border-radius: 30px;
 }


#data ul, #ingredients ul, #steps ul {
	list-style-type: none;
}


header {
	margin-bottom: 5%;
	border: 8px #f9ffa0;
  	background-color: #283618;
 	border-radius: 20px;
  	color: black;
  	font-size: 20px;
  	padding: 20px 30px;
  	margin: 30px 20px;
  	text-align: center;
}

h1 {
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
}

h2 {
	margin-bottom: 2%;
	color: white;
	font-weight: bold;
	text-align: center;
	font-size: 1.7em;
	font-family: Garamond, Georgia, "Times New Roman";
}

img {
	width: 100%;
	border-radius: 10%;
}

a {
	color: #B66D1E;
}


#data {
	margin-bottom: 2%;
	font-size: 1em;
}

#data ul {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #BC6C25;
	border: 5px #606C38 outset;
	border-radius: 5px;
}

#data li {
	text-align: center;
	padding: 1%;
	color: #FEFAE0;
}

#filling {
	margin-bottom: 2%;
	font-size: 1em;
}

#filling ul {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #BC6C25;
	border: 5px #606C38 outset;
	border-radius: 5px;
}

#filling li {
	text-align: center;
	padding: 1%;
	color: #FEFAE0;
}

#topping {
	margin-bottom: 2%;
	font-size: 1em;
}

#topping ul {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #BC6C25;
	border: 5px #606C38 outset;
	border-radius: 5px;
}

#topping li {
	text-align: center;
	padding: 1%;
	color: #FEFAE0;
}


#steps {
	margin-bottom: 2%;
	font-size: 1em;
}

#steps ul {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #BC6C25;
	border: 5px #606C38 outset;
	border-radius: 5px;
}

#steps li {
	text-align: center;
	padding: 1%;
	color: #FEFAE0;
}


footer {
	font-size: 25px;
	font-family: Garmond, Georgia;
	text-align: center;
	color: black;
}

/* tablet size */
@media only screen and (min-width: 600px) and (max-width: 900px) {

	#data ul {
		grid-template-columns: 1fr 1fr;
		grid-gap: 5px;
	}

	#steps ul {
		grid-template-columns: 1fr 1fr;
		grid-gap: 5px;
	}



}

/* desktop */
@media only screen and (min-width: 901px) {

	#data ul {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-gap: 5px;
	}

	#steps ul {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-gap: 5px;
	}

}