/*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(images/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: 1rem 1.75rem 1.5rem;
	}

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

header {
	display: grid;
	grid-template-columns: 80% auto;
    background: #c0c0c0;
    padding: 1rem .5rem;
	
	}

h1 {
	width: 60%;
    
  
	}

h2, h3, h4 {
		font-weight: bold;
        
	}

h2 {
	font-size: 25px;
	margin: 1rem 0rem 1.25rem;
	}
	
h3 {
	font-size: 25px;
	margin: 1rem 0rem 1.25rem;
}

h4 {
	font-size: 20px;
	margin: 1rem;
}


a {
	text-decoration: none;
	}

nav ul  {
	text-align: right;
	}
	
ul li 	{
	list-style-type: none;
 
   
}

figure {
	margin-bottom: 1.5rem;
}

main.menu ul {
		margin: 1rem 0rem 2rem;
}	

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

p {
	margin: 1rem 0rem 1.25rem;
	}
	
p.description {
	grid-column: 1/2;
	margin: 0rem;
	}
	
p.price {
    display: grid;
	grid-row: 1/2;
    grid-column: 2/3;
	color: red;
	text-align: right;
	margin: 0;
	}
	
nav ul li {
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1rem;
    
	}
	
nav ul li a {
	color: yellow;
	background-color: rgb(17, 17, 243);
    font: bold;
	padding: .5em .25em .25em;
	}
	

p.slogan  {
	font-size: 120px;
	font-family: sans-serif;
	font-style: bold;
	margin: 4rem 2rem 9.5rem;
	color: rgb(255, 255, 255);	
	}
	
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 3rem; 
  box-sizing: border-box;
  padding: 1em 1em;
  background: yellow
}

footer p {
	margin: 0em;
   
}

address  {
	color: rgb(255, 131, 7);
    
   
	}

article p {
        color: rgb(0, 0, 0);
    }



