:root {
    --White: hsl(0, 0%, 100%);
    --Stone-100: hsl(30, 54%, 90%);
    --Stone-150: hsl(30, 18%, 87%);
    --Stone-600: hsl(30, 10%, 34%);
    --Stone-900: hsl(24, 5%, 18%);
    --Brown-800: hsl(14, 45%, 36%);
    --Rose-800: hsl(332, 51%, 32%);
    --Rose-50: hsl(330, 100%, 98%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--Rose-50);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
    margin: 2rem 0rem;
    font-size: smaller;
    font-family: 'Outfit' sans-serif;
}

.recipe{
    
    width: 90%;
    max-width: 600px;
    background-color: var(--White);
    border-radius: 20px;
    margin: 20px;
    padding: 30px;
}

.recipe img{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 20px;
}

h1{
    font-family: 'Young Serif', sans;
    font-weight: 600;
    padding-bottom: 8px;
}
p{
    font-size: small;
}

span{
    font-weight: bold;
    margin: 0px 2px;
}

h2{
    padding: .5rem 0rem;
    color: var(--Brown-800);
}

li{
    list-style-position: inside;
    margin: 10px 0px;
}

hr {
    margin: 10px 0px\zx;
}

.time{
    background-color: var(--Stone-100);
    padding: 10px 15px;
    margin: 10px 5px;
    
}

.time h3{
    color: var(--Rose-800);
    margin-bottom: 10px;
}

li::marker{
    color: var(--Brown-800);
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

table td {
    text-indent: 2.3rem;
    border-bottom: 1px solid lightgray;
    padding: 0.8rem 0 1rem 0;
}

.measurements{
    color: var(--Brown-800);
}

/* @media screen and (max-width: 768px) {
    .recipe {
        width: 95%;
        padding: 20px;
    }
    
    table td {
        text-indent: 1rem;
        padding: 0.5rem;
    }
} */
