* {
    box-sizing: border-box;
}

body {
    background-color: hsl(30, 54%, 90%);
}

main {
    width: 720px;
    background-color: whitesmoke;
    border: 1px solid white;
    border-radius: 25px;
    margin: 50px auto;
}

img {
    width: 650px;
    border-radius: 15px;
    margin: 40px auto;
    display: block;
}

h1 {
    margin-left: 35px;
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: hsl(24, 5%, 18%);
}

p {
    padding-left: 35px;
    padding-right: 35px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: hsl(30, 10%, 34%);
}

.prep-time {
    width: 650px;
    border-radius: 15px;
    margin: 30px auto;
    background-color: hsl(330, 100%, 98%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: hsl(30, 10%, 34%);
}

.prep-time h2 {
    color: hsl(332, 51%, 32%);
    font-size: 1.25rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding-left: 15px;
    font-weight: 600;
}

.prep-time span {
    padding-left: 25px;
    color: hsl(30, 10%, 34%);
    font-weight: 600;
}

.prep-time li {
    margin-bottom: 15px;
}

h2:not(.prep-time h2) {
    margin-left: 45px;
    font-family: "Young Serif", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
    color: hsl(14, 45%, 36%);
}

.ingredients {
    margin-left: 20px;
    border-bottom: 1px solid hsl(30, 10%, 34%, 0.3);
    width: 90%;
    padding-bottom: 20px;
}

.instructions {
    margin-left: 20px;
    width: 90%;
    border-bottom: 1px solid hsl(30, 10%, 34%, 0.3);
    padding-bottom: 20px;
}

.nutrition {
    margin-left: 30px;
    margin-bottom: 40px;
}

.ingredients li {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 15px;
}

.instructions li {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 15px;
}

.instructions span {
   color: hsl(30, 10%, 34%);
   font-weight: 600; 
}


table {
  width: 85%;
  margin-left: 35px;
  border: 0;
  border-collapse: collapse;
}

tbody {
    width: 90%;
    margin: 0 35px;
}

td {
   color: hsl(30, 10%, 34%);
   font-family: "Outfit", sans-serif;
   font-optical-sizing: auto;
   font-style: normal;
   width: 50%;
   padding: 15px 30px
}

tr span {
    color: hsl(14, 45%, 36%);
    font-weight: 700; 
}

th {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    width: 50%;
    padding: 15px 0;
    text-align: left;
    padding-left: 32px;
    font-weight: 500;
}

caption {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 20px;
    text-align: left;
}

tr[class="border"] {
    border-bottom: 1px solid hsla(30, 10%, 34%, 0.3);
}

ul:not(.prep-time), ol {
    list-style-type: none;
}

.ingred li::before {
    content: "• ";
    color: hsl(14, 45%, 36%);
    font-weight: bold; 
    padding-right: 30px;
}

.instruct li::before {
    content: counter(list-item) ".";
    color: hsl(14, 45%, 36%);
    font-weight: bold;
    padding-right: 30px; 
}