/*Global variables*/
:root {
  /*Colors*/
  --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%);

  /* === Text Preset 1 === */
  --text-preset-1-font-family: "Young Serif", serif;
  --text-preset-1-font-size: 40px;
  --text-preset-1-font-weight: normal;
  --text-preset-1-line-height: 100%;
  --text-preset-1-letter-spacing: 0;
  /* === Text Preset 2 === */
  --text-preset-2-font-family: "Young Serif", serif;
  --text-preset-2-font-size: 28px;
  --text-preset-2-font-weight: normal;
  --text-preset-2-line-height: 100%;
  --text-preset-2-letter-spacing: 0;
  /* === Text Preset 3 === */
  --text-preset-3-font-family: "Outfit", sans-serif;
  --text-preset-3-font-size: 20px;
  --text-preset-3-font-weight: 600; /* SemiBold */
  --text-preset-3-line-height: 100%;
  --text-preset-3-letter-spacing: 0;
  /* === Text Preset 4 (Regular) === */
  --text-preset-4-font-family: "Outfit", sans-serif;
  --text-preset-4-font-size: 16px;
  --text-preset-4-font-weight: normal;
  --text-preset-4-line-height: 150%;
  --text-preset-4-letter-spacing: 0;
  /* === Text Preset 4 (Bold) === */
  --text-preset-4-bold-font-family: "Outfit", sans-serif;
  --text-preset-4-bold-font-size: 16px;
  --text-preset-4-bold-font-weight: bold;
  --text-preset-4-bold-line-height: 150%;
  --text-preset-4-bold-letter-spacing: 0;

  /*spacing*/
  --spacing-100: 8px;
  --spacing-150: 12px;
  --spacing-200: 16px;
  --spacing-300: 24px;
  --spacing-400: 32px;
  --spacing-500: 40px;
  --spacing-600: 48px;
  --spacing-1600: 128px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0%;
  padding: 0%;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
@font-face {
  font-family: young-serif;
  src: url(/recipe-page-main/assets/fonts/young-serif/YoungSerif-Regular.ttf)
    format("truetype");
}
@font-face {
  font-family: Outfit-Bold;
  src: url(/recipe-page-main/assets/fonts/outfit/static/Outfit-Bold.ttf)
    format("truetype");
}
@font-face {
  font-family: Outfit-semiBold;
  src: url(/recipe-page-main/assets/fonts/outfit/static/Outfit-SemiBold.ttf)
    format("truetype");
}
@font-face {
  font-family: Outfit-Regular;
  src: url(/recipe-page-main/assets/fonts/outfit/static/Outfit-Regular.ttf)
    format("truetype");
}
body {
  background-color: var(--Stone-100);
  padding-top: 128px;
  padding-bottom: 128px;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 1px);
  font-size: 16px;
  font-family: Outfit-Regular;
}
.container {
  width: 736px;
  height: 1702px;
  border-radius: 24px;
  padding: 40px;
  background-color: var(--White);
  max-width: 1440px;
}
h1 {
  font-family: young-serif;
  font-size: 40px;
  line-height: 100%;
  color: var(--Stone-900);
  margin-bottom: 24px;
}
.explanation {
  font-family: Outfit-Regular;
  line-height: 150%;
  color: var(--Stone-600);
}
img {
  margin-bottom: 40px;
  border-radius: 12px;
}
section {
  margin-top: 32px;
  margin-bottom: 32px;
}
.prep-time {
  background-color: var(--Rose-50);
  border-radius: 12px;
  padding: 24px;
  padding-left: 40px;
  width: 656px;
  height: 172px;
}
ul {
  padding: left 2.5rem;
  padding-bottom: 1.5rem;
}
ul > li {
  text-indent: 1rem;
}
h2 {
  margin-bottom: 16px;
  color: var(--Brown-800);
  font-family: Outfit-Bold;
  font-size: 28px;
  line-height: 100%;
}
h3 {
  margin-bottom: 16px;
  color: var(--Rose-800);
  font-family: Outfit-Bold;
  font-size: 20px;
  line-height: 100%;
}
hr {
  width: 100%;
}
li {
  padding: 0px 0px 8px 8px;
  line-height: 150%;
}
p {
  margin-bottom: 24px;
}
td {
  border-bottom: 1px solid black;
  margin: 25px;
  padding-top: 8px;
  padding-bottom: 8px;
}

table {
  border-collapse: collapse;
  width: 100%;
  padding: 20px 10px;
  text-align: left;
}
table tr:last-child td {
  border-bottom: none;
}
.value {
  font-family: Outfit-Bold;
  color: var(--Brown-800);
  line-height: 150%;
}
