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

    .paper {
        background-image: url("img/paperstack.jpg");
        background-repeat: no-repeat;
        background-size: cover; 
        padding: 30px;
        position: relative;
    }

    .paper,
    .paper::before,
    .paper::after {
        box-shadow: 1px 1px 1px rgba(0,0,0,0.25);
        border: 1px solid #bbb;
    }

    .paper::before,
    .paper::after {
        content: "";
        position: absolute;
        height: 95%;
        width: 99%;
        background-image: url("img/paperstack.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        filter: brightness(80%);
    }

    .paper::before {
        right: 15px;
        top: 0;
        transform: rotate(-1deg);
        z-index: -1;
    }

    .paper::after {
        top: 5px;
        right: -5px;
        transform: rotate(-1deg);
        z-index: -2;
    }

    #wrapper {
    	width: auto;
    	max-width: 1000px;
    	margin: 2% auto;
    }

    header {
    	border: 1px solid blue;
    	margin: 2%;
        font-family: 'Chilanka', cursive;
        text-align: center;
    }

    h1 {
        border: 2px dotted rgba(48, 54, 47, 1);
        background-color: rgba(217, 197, 178, 1);
        color: rgba(148, 82, 74, 1);
    }

    h1 p {
        border: 1px solid pink;
        color: rgba(148, 82, 74, 1);
    }

    img {
        width: 100%;
        border: 1px solid;
        border-color: rgba(148, 82, 74, 1);
        border-radius: 4px;
        padding: 1px;
    }

    body {
        font-size: 20px;
        background-image: url("img/background.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 100%;
    }

    #data {
    	margin-bottom: 2%;
    	font-size: .8em;
    }

    #data li {
    	border: 5px double;
        border-color: rgba(122, 130, 171, 1);
        border-radius: 10px;
    	display: block;
    	margin: 1%;
    	text-align: center;
        font-family: 'Montserrat', sans-serif;
        color: rgba(184, 112, 101, 1);
        background-color: rgba(217, 197, 178, 1);
    }

     #ingredients {
    	margin-bottom: 2%;
    }

    #ingredients li {
    	border: 2px solid;
        border-color: rgba(184, 112, 101, 1);
        border-radius: 10px;
    	display: block;
    	margin: 1%;
    	text-align: center;
        font-family: 'Montserrat', sans-serif;
        color: rgba(184, 112, 101, 1);
        background-color: rgba(217, 197, 178, 1);
    }

     #steps {
    	margin-bottom: 2%;
    }

    #steps li {
    	border: 2px dotted;
        border-color: rgba(122, 130, 171, 1);
        border-radius: 10px;
    	display: block;
    	margin: 1%;
    	text-align: left;
        font-family: 'Chilanka', cursive;
        color: rgba(48, 54, 47, 1);
    	padding: 2%;
    	min-height: 150px;
        background-color: rgba(217, 197, 178, 1);
    }

    li span {
    	font-weight: bold;
        color: rgba(148, 82, 74, 1);
    }

    footer {
    	border: 1px solid brown;
        background-color: rgba(184, 112, 101, 1);
        font-family: 'Amatic SC', cursive;
        color: rgba(48, 54, 47, 1);
        text-align: center;
    }

    /* tablet styles */
    @media only screen and (min-width: 500px) and (max-width: 700px) {

    	#data ul {
    		margin: 1%;
    		display: grid;
    		grid-template-columns: 1fr 1fr;
    		grid-template-rows: 1fr 1fr;
    		grid-gap: 5px;
    	}

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

    	#step1 {
    		grid-area: step-one;
    	}

    	#step2 {
    		grid-area: step-two;
    	}

    	#step3 {
    		grid-area: step-three;
    	}
    }

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

    	#data ul {
    		margin: 1%;
    		display: grid;
    		grid-template-columns: 1fr 1fr 1fr 1fr;
    		grid-gap: 5px;
    	}

    	#steps ul {
    		margin: 1%;
    		display: grid;
    		grid-template-columns: repeat(3, 1fr);
    		grid-gap: 5px;
    	}
    }




























