: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%);
}



h1, h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
    color: var(--stone-900);
    margin-left: 1rem;
}

h2 {
    color: var(--brown-800);
    display: flex;
    justify-content: flex-start;
}

body {
    background-color: var(--rose-50);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}


main img {
    max-width: 100%;
}



.prep-time {
    background-color: var(--rose-50);
    border-radius: 15px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

p, li {
   font-family: "Outfit", sans-serif;
   font-optical-sizing: auto;
   font-style: normal;
   color: var(--stone-900);
   font-weight: 300;
   margin-bottom: 1rem;

}

li b {
    font-weight: 600;
    color: var(--stone-900);
}


p {
    font-weight: 300;
    color: var(--stone-900);
    display: flex;
    flex-wrap: wrap;
    margin-right: 1rem;
    margin-left: 1rem;
    word-wrap: break-word;
}

h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: var(--stone-900);
    padding-left: 1rem;
}

table {
    width: 40%;
    font-family: "Outfit", sans-serif;
    color: var(--stone-900);
}

tr {
    margin-bottom: 2rem;
}

td {
    font-weight: 300;
}

td > b {
    font-weight: 600;
}




