body{
    max-width:1000px;
    margin:auto;
    width: 90%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(250, 243, 232);
}

header{
    background-image: url("https://food.fnr.sndimg.com/content/dam/images/food/fullset/2011/4/12/1/VM0106_Chocoflan_s4x3.jpg.rend.hgtvcom.1280.1280.suffix/1485536949757.webp");
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 5%;
    margin-bottom: 2%;
    border-radius: 25px;
}

h1{
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-shadow: 2px 2px rgb(64, 44, 22);
}
h2, h3{
    color: rgb(64, 44, 22);
    font-weight: 300;
    padding-bottom: 0;
}

.introduction{
    max-width: 1000px;
    margin: 0;
    padding: 20px;
}

.desc{
    margin-bottom: 5%;
    font-size: 20px;
    font-weight: 300;
}
aside{
    color: rgb(64, 44, 22);
    font-weight: 300;
}

.prep{
   
    display: flex;
    justify-content: center;
    padding-left:0;
    background-color: rgb(242, 234, 219);
    border-radius: 25px;
    margin-bottom:2%; 
}


.prep >li{
    padding-left: 20px;
}

.recipe-container {
    max-width: 1000px;
    margin: 0;
    padding: 20px;
    display: flex;
    gap: 20px;
    background-color: rgb(242, 234, 219);
    border-radius: 25px;
    margin-bottom:2%; 
}

.ingredients{
    padding-right: 10px;
    padding-bottom: 2%;
    max-width: 1000px;
    font-size: 14px;
    border-radius: 25px;
    margin-bottom:2%; 
    background-color: rgb(250, 243, 232);
}

ul{
    list-style-type: none;

}

.how-to{
    line-height: 25px;
}

.instructions{
    padding-right:2%;
    padding-bottom: 2%;
    max-width:800px;
    border-radius: 25px;
    margin-bottom:2%; 
    background-color: rgb(250, 243, 232);
}

.steps{
    width: 650px;
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.how-to >li {
    padding-bottom: 4%;
}



.note{
    padding-bottom: 5%;
    font-size: 20px;
    font-weight: 300;
}


.end{
    width: 400px;
    height: 300px;
    float: right;
    object-fit: cover;
    object-position: center;
    margin: 0 0 0 30px;
    border-radius: 25px;
}

.attribution{
    font-style: italic;
    font-weight: 100;
}

 @media (max-width: 800px) { 
      .introduction, .recipe-container{
        flex-wrap: nowrap; 
        display: block;
      }

      .ingredients, .instructions{
        padding-top: 2%;
        padding-bottom: 2%;
      }
      .end{
        float:none;
        display: block;
        padding-bottom: 2%;
       }
       .note{
        padding-top: 2%;
       }
       .steps{
        width: 400px;
        margin:auto;
       }
      }
    

 @media (min-width: 1000px) { 
    .prep{
        margin: 0 25% 0 25%;
    }
 }