/* - 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%) */

/*Young Serif */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Young+Serif&display=swap");

/* Outfit */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Young+Serif&display=swap");

: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%);
}

body {
  background-color: var(--stone-100);
  font-family: "Outfit", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto;
  overflow-x: hidden;
}

h3 {
  font-family: "Young Serif", sans-serif;
  font-weight: 400;
  color: var(--brown-800);
  font-size: 25px;
}

p,
li {
  color: var(--stone-600);
  font-size: 16px;
}

li {
  padding-left: 20px;
  margin-bottom: 10px;
}

li::marker {
  font-size: 12px;
}

span {
  font-weight: bold;
}
hr {
  width: 100%;
  color: var(--stone-150);
}

.container {
  width: 650px;
  background-color: var(--White);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.container .header img {
  width: 100%;
  border-radius: 10px;
}

.container .header .text h1 {
  font-family: "Young Serif", sans-serif;
  font-weight: 400;
}

.container .preparation {
  background-color: var(--rose-50);
  padding: 5px 30px;
}

.container .preparation h3 {
  font-family: "Outfit";
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}

.container .preparation ul {
  padding-left: 20px;
  list-style-position: outside;
}

.container .preparation ul li {
  margin-bottom: 10px;
}

.container .instructions ol li {
  text-indent: 0px;
  padding-left: 20px;
  margin-bottom: 10px;
}

.container .instructions ol li::marker {
  font-size: 15px;
}

.nutritions table {
  width: 100%;
  border-collapse: collapse;
}

.nutritions table tr {
  border-bottom: 1px solid var(--stone-150);
}

.nutritions table td {
  padding: 12px;
}

.nutritions table td:nth-child(2) {
  color: var(--brown-800);
  font-weight: 700;
}

@media (max-width: 480px) {
  body {
    margin: 0 auto;
  }

  .container {
    border-radius: 0px;
  }
}
