@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --Nutmeg: hsl(14, 45%, 36%);
  --Dark-Raspberry: hsl(332, 51%, 32%);
  --White: hsl(0, 0%, 100%);
  --Rose-White: hsl(330, 100%, 98%);
  --Eggshell: hsl(30, 54%, 90%);
  --Light-Grey: hsl(30, 18%, 87%);
  --Wenge-Brown: hsl(30, 10%, 34%);
  --Dark-Charcoal: hsl(24, 5%, 18%);
}

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

body {
  background-color: var(--Eggshell);
  font-family: Outfit;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;

  
}

.container-article{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 40px;
  background-color: var(--White);
  padding: 40px;
  border-radius: 24px;
  max-width: 736px;
}

img {
  width: 100%;
  max-height: 300px;
  border-radius: 12px;
}

.container-recipe {
  list-style-position: inside;
  padding-top: 40px;
}

.title-recipe {
  font-size: 36px;
  font-family: Young Serif;
  font-weight: 400;
  line-height: 36px;
  color: var(--Dark-Charcoal);
  margin-bottom: 24px;
}

.title-paragraph {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--Wenge-Brown);
  word-wrap: break-word;
  margin-bottom: 32px;
}

.preparation {
  background-color: var(--Rose-White);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.subtitle-preparation {
  color: var(--Dark-Raspberry);
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.list-preparation {
  padding-left: 8px;
}
.bullets-preparation {
  list-style: disc;
  padding-left: 16px;
  padding-bottom: 8px;
  color: var(--Wenge-Brown);
}

.bullets-preparation:last-child {
  padding-bottom: 0px;
}

ul > li::marker {
  color: var(--Dark-Raspberry);
}

.span-left {
  font-size: 17px;
  font-weight: 700;
}

.span-right {
  font-size: 16px;
  font-weight: 400;
}

.subtitle-ingredients {
  font-family: Young Serif;
  font-weight: 400;
  line-height: 28px;
  color: var(--Dark-Raspberry);
  padding-bottom: 24px;
}

.inside {
  margin-left: 16px;
}
.bullets-ingredients {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--Wenge-Brown);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--Light-Grey);
}

.bullets-ingredients li {
  list-style: disc ;
}

.subtitle-instruction {
  font-family: Young serif;
  font-weight: 400;
  line-height: 28px;
  color: var(--Dark-Raspberry);
  padding-top: 32px;
  padding-bottom: 24px;
}

.styled-list {
  list-style: none;
  padding-left: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--Light-Grey);
}

.styled-list li {
  display: flex;
}

.number {
  color: var(--Dark-Raspberry);
  width: 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.caption {
  display: block;
  width: 100%;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding-bottom: 8px;
}

.sixth {
  padding-bottom: 0px;
}

.preface {
  font-weight: 700;
  line-height: 24px;
}

.subtitle-nutrition {
  font-family: Young serif;
  font-weight: 400;
  line-height: 28px;
  color: var(--Dark-Raspberry);
  padding-top: 32px;
  padding-bottom: 24px;
}

.caption-nutrition {
  display: block;
  width: 100%;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding-bottom: 24px;
}

.container {
  display: grid;
  grid-template-columns: 32px auto 16px auto 32px;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
  ". title1 . value1 ."
  ". title2 . value2."
  ". title3 . value3 ."
  ". title4 . value4 .";
}

.item-row-1a, .item-row-1b, .item-row-1c,
.item-row-2a, .item-row-2b, .item-row-2c,
.item-row-3a, .item-row-3b, .item-row-3c {
  grid-area: "." ;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-b {
  grid-area: title1;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-d {
  grid-area: value1;
  color: var(--Dark-Raspberry);
  font-weight: 700;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-b2 {
  grid-area: title2;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding: 12px 0px;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-d2 {
  grid-area: value2;
  color: var(--Dark-Raspberry);
  font-weight: 700;
  padding: 12px 0px;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-b3 {
  grid-area: title3;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding: 12px 0px;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-d3 {
  grid-area: value3;
  color: var(--Dark-Raspberry);
  font-weight: 700;
  padding: 12px 0px;
  border-bottom: 1px solid var(--Light-Grey);
}

.item-b4 {
  grid-area: title4;
  color: var(--Wenge-Brown);
  font-weight: 400;
  padding-top: 12px;
}

.item-d4 {
  grid-area: value4;
  color: var(--Dark-Raspberry);
  font-weight: 700;
  padding-top: 12px;
}

@media screen and (max-width: 375px) {
  body {
    background-color: var(--White);
  }
  .container-article {
    margin: 0px;
    padding: 0px;
    border-radius: 0px;
  }
  img {
    border-radius: 0px;
  }
  .container-recipe {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 40px;
  }
}