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

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: hsl(30, 54%, 90%);
}

.card {
    background-color: hsl(0, 0%, 100%);
    padding: 40px;
    max-width: 725px;
    border-radius: 10px;
    margin: 100px 0px;
}

.title__img {
    width: 100%;
    border-radius: 10px;
}

.title__heading{
    font-size: 40px;
    margin: 15px 0px;
    color: hsl(24, 5%, 18%);
}

.title__description {
    margin-bottom: 30px;
    color: hsl(30, 10%, 34%);
    font-weight: 400;
}

.prep {
    background-color: hsl(330, 100%, 98%);
    padding: 17px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.prep__title {
    font-family: 'Outfit';
    font-weight: 600;
    color: hsl(332, 51%, 32%);
}

.prep__list, .ing__list, .ins__list {
    padding-left: 20px;
    font-weight: 400;
}

.prep li::marker {
    color: hsl(332, 51%, 32%); /* Changes bullet color */
  }

.prep__item {
    padding-left: 18px;
    margin: 10px 0px;
    color: hsl(30, 10%, 34%);
}

.ing, .ins {
    border-bottom: 1px solid hsl(30, 18%, 87%);
    margin-bottom: 20px;
}

.ing__title, .ins__title, .nut__title {
    margin-bottom: 15px;
    color: hsl(14, 45%, 36%)
}

.ing__list, .ins__list {
    margin-bottom: 35px;
}

.ing__item, .ins__item {
    padding-left: 15px;
    margin: 10px 0px;
    color: hsl(30, 10%, 34%);
}

.nut__description{
    margin-bottom: 10px;
    color: hsl(30, 10%, 34%);
    font-weight: 400;
}

.nut__cell {
    border-bottom: 1px solid hsl(30, 18%, 87%);
    color: hsl(30, 10%, 34%);
    width: 5%;
    padding: 10px 0px 10px 30px;
    font-weight: 400;
}

.nut__cell--bold {
    border-bottom: 1px solid hsl(30, 18%, 87%);
    color: hsl(14, 45%, 36%);
    width: 5%;
}

.nut__row:last-child .nut__cell,.nut__row:last-child .nut__cell--bold  {
    border-bottom: none; /*Removes the border at the bottom of the table*/
}

h1, h2, h3 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
}

p, li, td {
    font-family: 'Outfit', serif;
    font-size: 16px;
}

li::marker {
    color: hsl(14, 45%, 36%); /* Changes bullet/number color */
    font-weight: bold;
  }