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


}  */

body {
    
    background-color: rgb(221 221 221);
}

div.container{
    max-width: 70em;
    margin: auto;
    background-color: rgb(250 250 250);

}
header{ 
    width: 100%;
    grid-column: 1/3;
}

h1 {
background-color: rgb(239 140 52);
color: rgb(250 250 250);
font-family: Sutro, serif; 
font-size: 2rem; 
font-weight: 700;  
padding: 1em 1em 0.25em;
font-style: bold; 

}

h2 {
background-color: rgb(239 140 52);
color: rgb(245 221 191);
font-family: Sutro, serif;  
font-size: 1.5rem;
font-weight: 400;  
font-style: normal;  
padding: 0em 1em 1em;
}

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

}
figure{
display: grid;
grid-template-columns: 80% auto;
grid-template-rows: auto;
padding: 0 0 2rem;

}

figcaption {
padding: 2em 2em;
color: rgb(0 0 0);
font-family: poppins, italic;  
font-size: 1rem;
font-weight: 400;  
font-style: italic;
grid-column: 2/3;

}
main{
    display: grid;
    grid-template-columns: 50% auto;
    grid-template-rows: auto;
}
.ingredients{
    padding: 1rem 1rem;
    grid-column: 1/2;
    

}
.directions{
    margin: auto;
    padding: 1rem 1rem;
    grid-column: 2/3;
}

h3 {
padding: 1em 2em 0em;
color: rgb(239 140 52);
font-family: Sutro, serif;  
font-size: 1.2rem;
font-weight: 700;  
font-style: normal;
text-transform: uppercase;
letter-spacing: 0.1em;
list-style: none;
border-top: solid;
}
ul {
padding: 0em 1em;
color: black;
font-family: poppins, italic;  
font-size: 1rem;
font-weight: 400;  
font-style: normal;

}

ol {
padding: 0em 1em;
color: black;
font-family: poppins, italic;  
font-size: 1rem;
font-weight: 400;  
font-style: normal;

}
li {
margin: 1rem;
}
footer {
    background-color: rgb(239 140 52);
    padding: 1em 1em;
    color: white;
    font-family: poppins, italic;  
    font-size: 1rem;
    font-weight: 400;  
    font-style: normal;   
    grid-column: 1/3; 
}
/*By the way, when we use the slash-asterisk combo, it’s a comment on the CSS and it’s meant for human beings. The machine knows it is not supposed to process anything until it finds a asterisk-slash combo that ends the comment on the CSS. */
