/*CSS DOCUMENT*/

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;} /*My edited version of the Eric Meyer’s reset tool. You may want to include this in all of your future CSS files. */

body{
	font-family: sans-serif;
}

div.home-container { 
	background: url(home-background.jpg) center center fixed;
	background-size: cover;
	position: relative;
	min-height: 100vh;
}

/* >>> IMPORTANT: you have to change the wrap the content of your home page (index) in a div with a class home-container to make it work. If you used a div with the class container on your home, you’ll only need to change the name of the class.  */


main { 
	padding: 1em;
	}

img {
    width: 100%; /*Please leave this line.*/
     display: block;
	}


header {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: auto auto;
	background: rgb(191, 187, 187);
	padding: 1em;
	}

h1 {
	width: 12em;
	}

h2, h3, h4 {
		font-weight: bold;
		font-family: Arial, Helvetica, sans-serif;
	}

h2 {
	font-size: 2em;
	margin: 1em 0em 1em;
	}
	
h3 {
	font-size: 1.5em;
	margin: 1em 0em 1.5em;
}


a {
	text-decoration: none;
	}

nav ul  {
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.15em;
	margin: .5em .25em;
	text-transform: uppercase;
	}
	
ul li 	{
	list-style-type: none;
}

figure {
	margin-bottom: 1em;
}



main.menu ul {
		margin: 1em 0em;
}	

main.menu ul li {
		margin: .5em 0em 1em;
		display: grid;
		grid-template-columns: auto auto;
		grid-template-rows: auto auto;
}	

p {
	margin: .5em 0em .5em;
	font-family: Arial, Helvetica, sans-serif;
	}	

p.description {
	grid-column: 1/3;
	grid-row: 2/3;
	margin: 0;
	}
	
p.price {
	color: red;
	text-align: right;
	margin: 0;
	grid-row: 1/2;
	grid-column: 2/3;
	}
	
nav ul li {
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1em;
	}
	
nav ul li a {
	color: yellow;
	background-color: blue;
	padding: .25em .25em .25em;
	text-transform: uppercase;
	}
	

p.slogan {
	font-size: 4em;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-style: italic;
	margin: 1em .25em 1em;
	color: whitesmoke;	
	}
	
footer {
  position: bottom;
  bottom: 0;
  width: 100%;
  height: 3rem; 
  box-sizing: border-box;
  padding: 1em .5em;
  background: yellow;
}

address {
	color: orange;
	margin: 0em 0 1em;
	font-family: Arial, Helvetica, sans-serif;
	}

footer p {
	margin: 0;
}



@media screen and (min-width:40em){
	
}
