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

img {
    width: 100%; /*Please leave this line.*/
     display: block;
}
div.container {
    max-width: 75em;
    margin: auto;
    background-color: #fafafb;
}

body{
    background-color: #c0c0c0;
    color: #000000;
    line-height: 140%;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1 {/*Johnsonville Italian Sausage*/
	background-color: #ff8800; 
	color: #fafafb;  
    font-size: 2.5rem;
    padding: 1em .5em 0em;
	line-height: 100%; 	
	font-family: Sutro, serif;  
    font-weight: 700;  
    font-style: normal;
}

h2{/*A classic family favorite*/
    background-color: #ff8800;
	color: #ffdcb9;
    font-size: 1.5rem;
    padding: 0em .5em .5em;
	line-height: 250%;
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
}

figcaption{/*Johnsonville italian sausages make it simple...*/
    background-color: #fafafb; 
    color: #000000; 
    font-size: 1rem; 
    padding: 1rem 1.5rem 1.5rem;   
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: italic;
}
figure{
    display: grid;
    max-width: 100%;
    margin-bottom: 1em;
    grid-template-columns: 80% auto;

}
main{
    display: grid;
    padding: 0rem 2rem 3rem;
    background-color: #fafafb; 
    grid-template-columns: repeat(2, 1fr);	 
}
section.ingredients{
    max-width: 95%;
    border-top: 0.2rem sol#ff8800;
    grid-column: 1/2;
}

section.directions{
    max-width: 95%;
    border-top: 0.2rem sol#ff8800;
    grid-column: 2/3;
}

h3{ /*INGREDIENTS AND DIRECTIONS*/
    background-color: #fafafb; 
    color: #ff8800; 
    font-size: 1.3rem; 
    padding: 1.5rem .5rem .5rem;   
    font-family: Sutro, serif;  
    font-weight: 300;  
    font-style: normal;
    text-transform: uppercase;
    border-top: 0.1rem solid #ff8800;
}

li{ /*12 lasagna noodles...*/
    background-color: #fafafb; 
    color: #000000; 
    padding: .5rem 0rem;
    font-size: 1rem;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}


footer{/*recipe from allrecipes.com*/
    background-color: #ff8800; 
	color: #fafafb;  
    font-size: 1rem;
    padding: 1.3em 1em 1.3em;
    font-family: poppins, sans-serif;  
    font-weight: 400;  
    font-style: normal;
}