.recipe {
  width: 730px;
  padding: 2rem;
  background: hsl(0, 0%, 100%);
  margin: 5rem 0;
  border-radius: 25px;
}
.recipe__img img {
  border-radius: 15px;
}
.recipe__content {
  margin-top: 2rem;
}
.recipe__title {
  font-size: 42px;
  font-family: "Young Serif", serif;
  font-weight: 500;
  color: hsl(24, 5%, 18%);
  margin-bottom: 0;
}
.recipe__time {
  background: hsl(330, 100%, 98%);
  padding: 2rem;
  border-radius: 10px;
}
.recipe__time-list-item {
  color: hsl(30, 10%, 34%);
}
.recipe__time-list-item::marker {
  color: hsl(332, 51%, 32%);
}
.recipe__ingredients ul {
  list-style-type: square;
}
.recipe__ingredients-list-item {
  color: hsl(14, 45%, 36%);
}
.recipe__ingredients-list-item::marker {
  color: hsl(14, 45%, 36%);
  font-size: 12px;
}
.recipe__instructions {
  border-bottom: 1px solid hsl(30, 18%, 87%);
  padding-bottom: 15px;
}
.recipe__instructions-list-item {
  color: hsl(30, 10%, 34%);
}
.recipe__instructions-list-item::marker {
  color: hsl(14, 45%, 36%);
  font-weight: 600;
}
.recipe__nutrition h2 {
  margin-bottom: 10px;
}
.recipe__nutrition-row {
  width: 100%;
}
.recipe__nutrition-row td {
  width: 50%;
  padding: 10px 15px;
  border-bottom: 1px solid hsl(30, 18%, 87%);
  color: hsl(30, 10%, 34%);
}
.recipe__nutrition-row td:last-child {
  color: hsl(14, 45%, 36%);
  font-weight: 700;
}
@media (max-width: 768px) {
  .recipe {
    width: initial;
    margin: 2rem;
  }
  .recipe__title {
    font-size: 22px;
  }
  .recipe__time {
    padding: 1rem;
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: hsl(30, 54%, 90%);
}

img {
  width: 100%;
}

figure {
  margin: 0;
}

p {
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: hsl(30, 10%, 34%);
}

h3 {
  margin-top: 0;
  color: hsl(332, 51%, 32%);
}

ul {
  margin-bottom: 0;
}

h3, h4, h5, h6, li, tr {
  font-family: "Outfit", sans-serif;
}

h2 {
  font-size: 28px;
  font-family: "Young Serif", serif;
  font-weight: 500;
  color: hsl(14, 45%, 36%);
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}
li {
  margin-bottom: 10px;
  padding-left: 15px;
}

table {
  width: 100%;
}/*# sourceMappingURL=styles.css.map */