body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(30, 18%, 87%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
    font-size: 16px;
}

article.recipe {
    height: auto;
    width: 700px;
    color: hsl(30, 10%, 34%);
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 25px;
    font-weight: 400;
    box-sizing: border-box;
    background-color: white;
    justify-content: center;
}

article.recipe img {
    width: 650px;
    height: 400px;
    border-radius: 25px;
}

article.recipe header h1 {
    font-family: 'Times New Roman', Times, serif;
    color: hsl(24, 5%, 18%);
    font-size: 36px;
}

article.recipe p {
    color: hsl(30, 10%, 34%);
}

article.recipe blockquote {
    background-color: hsl(330, 100%, 98%);
    margin: 0px 50px;
    padding-left: 15px;
    line-height: 2;
}

article.recipe section {
    line-height: 1.5;
}

article.recipe blockquote ul {
    padding-left: 15px;
    li {
        padding-left: 15px;
    }
    em {
        font-style: normal;
        font-weight: 600;
    }
}

article.recipe section ul {
    padding-left: 15px;
    li {
        padding-left: 15px;
    }
}

article.recipe section ol {
    padding-left: 25px;
    li {
        padding-left: 15px;
    }
    em {
        font-style: normal;
        font-weight: 600;
    }
}

article.recipe section h2 {
    color: hsl(14, 45%, 36%);
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}

article.recipe blockquote h2 {
    color: hsl(332, 51%, 32%);
    font-size: 14px;
}

article.recipe hr {
    border-top: 1px solid hsl(30, 54%, 90%);
    width: 650px;
}

article.recipe table {
    width: 600px;
    border-collapse: collapse;
    tr {
        height: 50px;
        border-bottom: 1px solid hsl(30, 54%, 90%);
    }
    th {
        font-weight: 400;
        text-align: left;
    }
    td {
        font-weight: 600;
        color: hsl(14, 45%, 36%);
    }
}