/*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;}


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

div.container{
	background-color: white;
	position: relative;
	min-height: 100vh;
	margin: 1rem 2rem;
}

/* >>> 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.  */

body{
	font-family: sans-serif;
}

main { 
	margin: 0rem;

}

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

header {
	display: grid;
	grid-template-columns: 60% auto;
	background-color: rgb(197,197,197);
	padding: 0.75em 1em;
	}

h1 {
	width:15em;
	}

h2, h3, h4 {
	font-weight: bold;
	font-family: sans-serif;
	text-align: left;
	}

h2 {
	font-size: xx-large;
	margin: 2rem 0rem 1rem;
	font-weight: bold;
	color: black;
	}
	
h3 {
	font-size: x-large;
	text-transform: capitalize;
}

h4 {
	font-size: large;
	text-transform: capitalize;
	grid-row: 1/2;
}

a {
	text-decoration: none;
	}

nav ul  {
	text-align: right;
	grid-row: 1/2;
	}

ul li 	{
	list-style-type: none;
	font-family: sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px 2px;
}

main.menu ul {
	margin: 2rem 0rem;
	font-family: sans-serif;
}	

main.menu ul li {
	margin: 1rem 0rem;
    display: grid;
    font-family: sans-serif;
    grid-template-columns: 80% auto;
	grid-template-rows: 50% auto;
}

figure {
	margin: 1rem 0rem;
} 

p{
	font-family: sans-serif;
	text-transform: none;
	font-weight: 400;
}
	
p.description {
	text-align: left;
	font-family: sans-serif;
	text-transform: lowercase;
	font-weight: 400;
	grid-column: 1/2;
	}
	
p.price {
	color: red;
	text-align: right;
	font-family: sans-serif;
	grid-row: 1/2;
	grid-column: 2/3;
	}
	
nav ul li {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 1rem;
	}
	
nav ul li a {
	color: yellow;
	background-color: blue;
	padding: 0.75em 0.5em 0.5em;
	}
	

p.slogan {
	font-size: 4.5rem;
	font-family: Georgia;
	font-style: italic;
	margin: 4rem 0rem;
	color: white;	
	}
	

address {
	font-family: sans-serif;
	color: orange;
	}

footer { 
	position: relative;
	bottom: 0;
	width: 100%;
	height: 3rem; 
	box-sizing: border-box;
	padding: 1em 0.5em;
	background:yellow;
}

footer p {
	margin: 0;
}

