html{
    background-color:#FFF4E9;
}
h1,h2,h3,h4{
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
div{
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0px 5px rgb(198, 198, 198);
}
#intro p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h1{
    font-size: 30pt;
    margin-top: 60px;
    opacity: 1;
}
.header{
/*   background-image: url(img/Lasagna1.png);
    opacity: 0.4;*/
    position: relative;
    overflow: hidden;
}
.header::before{
    content:"";
    background-image: url(img/Lasagna1.png);
    opacity: 0.4;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.ingredients img{
    display: block;
    border-radius: 30px;
    object-fit: cover;
    width: 100%;
}
.storage{
    margin-bottom: 50pt;
}
.citation{
    display: contents;
}
@media (min-width: 850px){
    .header{
        width: 850px;
        height: 200px;
        margin: auto;
    }
    #container{
        display: grid;
        width:800px;
        grid-template-columns: 550px 250px;
        margin: auto;
    }
    .ingredients{
        grid-column: span 2;
    }
    .ingredients{
        display: grid;
        grid-template-columns: 400px 300px;
        grid-column-gap: 10px;
        margin: auto;
    }
    .ingredients img{
        display: block;
        border-radius: 30px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .process{
        grid-column: span 2;
    }
    .storage{
        grid-column: span 2;
    }
    h1{
        font-size: 50pt;
    }
}