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

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

div.container {
    display: grid;
    max-width: 100%;
    margin: 0em 5em;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 5em 1fr 1fr 3em;
}

figure { 
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: auto 20%;
    background-color: rgb(250,250,250);
}

main {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    background-color: rgb(250,250,250);
    padding: 1rem;
}

body {
	background-color: rgb(221, 221, 221); /* grey */
	color: rgb(255, 136, 0);  /* orange */
	line-height: 200%; 	/* A little extra leading. */
	font-family: Sutro, serif;
}

header {
    background-color: rgb(255, 136, 0);
    padding: 1.5rem;
    grid-column: 1/3;
    grid-row: 1/-1;
}

h1 { /*Johnsonville Title*/
    background-color: rgb(255, 136, 0);
    color:rgb(250, 250, 250);
    font-size: xx-large;
	font-weight: 700;
	text-transform: capitalize;
    padding-top: 1em;
}

h2 { /*classic fam*/
	color: rgb(248,221,189);
	font-size: large;
	font-family: Sutro, serif;
	font-weight: 300;
}

h3 { /*ingredients*/
    color: rgb(255, 136, 0);
    font-size: large;
    font-weight: 500;
    text-transform: uppercase;
    font-family: Sutro, serif;
    padding: 0.5rem 0em;
    margin: 2rem 2rem 0rem 2rem;
    border-top: 2px solid rgb(255, 136, 0);

}

p {
    color: rgb(238, 238, 238);
    font-family: poppins, sans-serif;
    padding: 1rem;
}

figcaption {
    color: rgb(20,20,20);
    font-style: italic;
    font-family: poppins, sans-serif;
    margin: 1rem;
    padding: 1rem;
}   

li {
    color: rgb(20,20,20);
}

ul {
    padding: 0rem 2.5rem;
    font-family: poppins, sans-serif;
}

ol {
    padding: 0rem 2.5rem;
    margin: 0rem;
    font-family: poppins, sans-serif;
}

footer {
    display: grid;
    grid-column: 1/3;
    background-color: rgb(255, 136, 0);
}

/* styling -------------------------------------------------------- */ 