* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

.container {
    width: 21cm;
    height: 29.7cm;
    margin: 0 auto;
}

header {
    width: 21cm;
    height: 8cm;
} 

header > img {
    width: 21cm;
    height: 8cm;
} 

.recipe {
    display: grid;
    grid-template-columns: 3fr 4fr;
    height: 21.7cm;
} 



/* LEFT SIDE*/

.ingredients {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff5d7;  
} 

.notes {
    font-size: 20px;
    height: 4cm;
    margin: 10px;
    padding: 10px;
    border: solid #000;

} 

.ingredients-main{
    text-align: center;
    padding-top: 10px;
    padding-left: 30px;
    
}

.ingredients-main > h2 {
    font-size: 30px;
    text-decoration: underline;
    margin-bottom: 20px;  
} 

.amounts {
    margin-bottom: 40px;  
    display: flex;
    justify-content: space-around;
} 

.servings > *, .time > * { 
    vertical-align: middle;
    display: inline-block;
}

.icon { 
    width: 25px;
}

.ingredient-list {
    text-align: left;
    font-size: 20px;
}

.ingredient-list > ul {
    margin-top: 40px;
    font-size: 16px;
    list-style: none;
    line-height: 1.5;
} 

/* RIGHT SIDE */

.instructions{
    padding-top: 10px;
    padding-left: 30px;

    text-align: left;
    font-size: 20px;

    background-color: #fff;
    
}

.instructions > h3 {
    margin-top: 30px;
    
}

.instructions > ol {
    list-style-position: inside;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.5;
} 

