body {
  background-color: hsl(330, 100%, 98%);
  color: hsl(30, 10%, 34%);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

h1 {
  color: hsl(24, 5%, 18%);
  font-weight: 500;
  font-size: 2rem;
}

h1,
h2 {
  font-family: "Young Serif", serif;
}


article {
  font-family: "Outfit", sans-serif;
  max-width: 700px;
  background-color: hsl(0, 0%, 100%);
  padding: 1.7rem;
  border-radius: 20px;
}

article img {
  max-width: 700px;
  border-radius: 10px;
}

h1 {
  margin-bottom: 0px;
}

.start-description {
  margin-top: 10px;
  margin-bottom: 1.7rem;
}

.preparation-time {
  margin: 0 1rem;
  padding: 1rem;
  background-color: hsl(330, 100%, 98%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.preparation-time h3 {
  margin: 0.5rem 0 1rem 0;
}

.preparation-time ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

h3 {
  color: hsl(332, 51%, 32%);
}

h2 {
  font-size: calc(2rem-2px);
  font-weight: 500;
}

div h2,
span strong {
  color: hsl(14, 45%, 36%);
}

.ingredients,
.instructions {
  margin-top: 2rem;
}

.ingredients ul,
.instructions ol {
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 2.5;
}

.instructions ol {
  list-style: none;
  counter-reset: step;
}

.ingredients ul li::marker {
  padding-left: 2rem;
  color: hsl(14, 45%, 36%);
}

.instructions ol li {
  position: relative;
}

.instructions ol li::before {
  counter-increment: step;
  content: counter(step) ".";
  left: -20px;
  position: absolute;
  top: 0;
  font-weight: bold;
  color: hsl(14, 45%, 36%);
}

.nutrition span {
  display: flex;
  gap: 38%;
  padding-left: 2.2rem;
}

.nutrition span p {
  margin: 0;
  width: 80px;
}

@media screen and (max-width: 700px) {
  body {
    padding: 0;
    margin: 0;
  }

  article,
  article img {
    width: 100%;
  }

  article {
    padding: 0 0 1.7rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  article img {
    margin: 0;
    border-radius: 0;
  }

  article>*:not(img) {
    width: 80%;
  }
}