/*CSS document*/

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)*/

html, body, div, 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;}

img {
	width: 100%;
	display: block;
}

body {
	background-color: rgb(250,250,250); /* Not totally white. */
	color: rgb(51,51,51);  /* Not totally black. */
	line-height: 140%; 	/* A little extra leading. */
	font-family: sans-serif;
}

h1 {
	background-color: rgb(153,153,168);
	color: rgb(250,250,250); /* Same as body background. */
	font-size: 2.5em;
	padding: 2.5rem 1.5rem 0.5rem; /* You want three values. */
	font-weight: 600;
	text-transform: uppercase;
}

/* You’ll need to add a span element to your HTML. */
h1 span { 	
	font-family: serif;
	font-style: italic;
	font-weight: 500;
	text-transform: lowercase;
}

h2 {
	background-color: rgb(153,153,168);
	color: rgb(250,250,250);
	font-size: 1.75em;
	padding: 1.5rem;
	font-family: serif;
	font-weight: 600;
}

h3 {
	margin: 4rem 1.5rem 1rem; /*Three values again. You got the idea.*/
	padding-top: 0.5em;
	font-size: 1.25rem;
	color: rgb(172,50,43);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em; /*Just an extra tracking for bold uppercase letters. Try 0.1em */
	border-top: 0.1em solid rgb(172,50,43);
}

h4 {
	font-weight: 600;
}

p.description {
	font-style: italic;
}

p.price {
	color: rgb(172,50,43);
}

ul {
	margin: 0.5rem 1.5rem 0.5rem;
}

li { 
	margin: 1rem 0rem;
	list-style-type: none;
}