 /** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
    html, body, div, span, 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;  
    vertical-align: baseline;}
    
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {   
    display: block;}
    
    body {  
    line-height: 1.5;
    }
    
    ol, ul {    
    list-style: none;
    }
    
    blockquote, q { 
    quotes: none;
    }
    
    blockquote:before, blockquote:after,q:before, q:after { 
    content: '';    
    content: none;
    }
    
    table { 
    border-collapse: collapse;  border-spacing: 0;
    }    
    
    /* end reset*/
    

    /* add your css*/
    /*defait css for mobile!!!*/

    body {
        background-color: #798D6C;
        font-family:Open Sans Condensed, sans-serif;
          
    }

    h3 { 
        text-align: center;
        letter-spacing: 0.2em;
        margin-right: 35px;
        margin-left: 35px;
        font-size: 1.3em;
    }

    #wrapper{ 
        width:100%;
     }

    header { 
        font-family: 'Anton', sans-serif;
        font-size:40px;
        color:#798D6C;
        background-image: url(img/cranberryflatbread1.jpg);
        background-size: 100%;
        text-shadow: 2px 2px white;
        text-align: center;
        letter-spacing: .4em;
        min-height: 300px;
        padding: 2%;
        margin-top: 15px;
        margin-bottom: 15px;
     }

    h1 { 
        font-size:45px;
    }

    h2 { 
        font-size: 35px;
        text-align: center;
        color: #F2D7BE;
        letter-spacing: 0.1em;
        
     }

    h3{ 
        color:white; 
    }
    
    #ingredients { 
        color: white;
        font-size: 25px;  
        padding: 4%;
            }

    #ingredients li { 
        display: block;
        text-align: center;
       
    }

    #ingredients span {
        color: #F2D7BE;
    }

    #data { 
        color:#F2D7BE;
        font-size: 30px;
        padding:2%;
    }

    #data li { 
        color:white;
        text-align: center;
         
    }

    #data span{ 
        color: #F2D7BE;
        font-weight: bold;
        font-size: 30px;
     } 

    #steps { 
        background-image:url(img/cranberrysteps.jpg);
        background-size: 100%;    
    }

    #steps ul{ 
        color:white;
        font-size: 25px;
        padding: 2% 2% 2% 2%;
    
     }

     #steps li { 
        background-color: #798D6C;
        display: block;
        border: 3px solid #D9A178;
        text-align: center;
        min-height: 200px;
        padding: 4%;
    }

    #steps span { 
        color: #F2D7BE;
        font-weight: bold;
        font-size: 30px;
        text-align: right;
        letter-spacing: .2em;
     }

    #foot  { 
        color:white;
        font-size: 18px; 

    }

    #foot ul { 
        padding-right: 2%;
        padding-left: 3%;
 }

    #foot span { 
        color:white;
     }

    footer{ 
    color: black;
    text-align:center;
    margin:auto;
    clear: both; 

    }


    a:link, a:visited { 
        color: #F2D7BE;
        text-decoration: none; 
    }
    
    a:hover, a:focus { 
        color: black;
    }
/* end mobile styles*/
/* start tablet styles*/

    @media only screen and (min-width: 400px) and (max-width: 700px) { 

    h1 { 
        font-size:50px;
    }

    #data ul { 
        display: grid;
        grid-template-columns: 1fr 1fr 1fr ;
        grid-template-areas: 
             "prep cook yield";
        grid-gap: 3px;
    }



    #steps li { 
        border: 8px solid #F2D7BE;
    }

    #steps ul { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "step-one step-two"
            "step-three step-four";
        grid-gap: 15px;
    }


    #foot ul { 
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 
            "name date link";
        grid-gap: 3px;
        padding-right: 3.5%;
        padding-left: 2%;
    }


} /* this closes tablet media query */


   /* desktop styles */ 
     @media only screen and (min-width: 701px) {

    h1 { 
        font-size:50px;
    }

    #data ul { 
        display: grid;
        grid-template-columns: 1fr 1fr 1fr ;
        grid-template-areas: 
             "prep cook yield";
        grid-gap: 3px;
    }

    #steps li { 
        border: 3px solid #D9A178;
    }

    #steps ul { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "step-one step-two"
            "step-three step-four";
        grid-gap: 15px;
    }


    #foot ul { 
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 
            "name date link";
        grid-gap: 3px;
        padding:1% 3.7% 1% 2%;
       
    }


     } /* end desktop styles */ 


  





