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

ul li,
ol li {
  color: var(--Nutmeg);
  font-family: "Outfit", sans-serif;
}

ol li::marker {
  font-weight: 700;
}

li {
  padding-left: 1rem;
  margin-bottom: 0.6rem;
}

:root {
  --Nutmeg: hsl(14, 45%, 36%);
  --DarkRaspberry: hsl(332, 51%, 32%);

  --White: hsl(0, 0%, 100%);
  --RoseWhite: hsl(330, 100%, 98%);
  --Eggshell: hsl(30, 54%, 90%);
  --LightGrey: hsl(30, 18%, 87%);
  --WengeBrown: hsl(30, 10%, 34%);
  --DarkCharcoal: hsl(24, 5%, 18%);

  --fs-body: 1rem;
  --bRadius: 15px;
}

.container {
  width: calc(100% - 4rem);
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

body {
  background: var(--White);
}

.bodyText {
  font-family: "Outfit", sans-serif;
  font-size: var(--fs-body);
  color: var(--WengeBrown);
  line-height: 1.8;
  letter-spacing: 1.4;
}

.insideBox {
  margin-left: 3.5rem;
  margin-bottom: 2.5rem;
}

.recipeTitle,
.subHeadding {
  font-family: "Young Serif", serif;
}

.recipeTitle {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 1.38974358974359rem + 2.051282051282051vw, 2.8rem);
  margin-bottom: 1.6rem;
  color: var(--DarkCharcoal);
  margin-top: 1.6rem;
}

.subHeadding {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 2.082051282051282rem + -0.4102564102564102vw, 2rem);
  margin-bottom: 1.6rem;
  margin-top: 1.6rem;
  color: var(--Nutmeg);
}

.miniSubHeading {
  font-family: "Outfit", sans-serif;
  margin-top: 3.5rem;
  font-weight: 600;
  color: var(--DarkRaspberry);
  margin-bottom: 1.2rem;
}

.boldText {
    font-weight: 700;
}

td .boldText {
    color: var(--Nutmeg);
}

table {
    width: 100%;
    margin-top: 1rem;
}

table tr td {
    border-bottom: 1px solid var(--LightGrey);
    padding-bottom: 1rem;
    padding-top: 1rem;
    padding-left: 2rem;
}

table tr td {
    width: 50%;
}

td {
    padding: 8px auto;
}

img {
  width: 100%;
  border-radius: var(--bRadius);
}

hr {
    border: none;
    border-bottom: .6px solid var(--LightGrey);
    margin-top: 2rem;
}
