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

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  font-family: Outfit;
  background-color: hsl(0, 0%, 100%);
  padding-bottom: 2rem;
}

header {
  margin-bottom: 2rem;
}
header img {
  width: 100%;
}

.content {
  min-width: 375px;
  background-color: hsl(0, 0%, 100%);
}

li {
  padding: 0.5rem 0;
}

section {
  padding: 0 2rem 0;
}
section h2 {
  font-family: "Young Serif";
  font-weight: 600;
}
section ul,
section ol {
  margin-left: 1.5rem;
}
section ul li,
section ol li {
  padding-left: 1rem;
}

.content__intro {
  margin-bottom: 1rem;
}
.content__intro h1 {
  font-family: "Young Serif";
  margin-bottom: 1rem;
  color: hsl(24, 5%, 18%);
}
.content__intro p,
.content__intro li {
  color: hsl(30, 10%, 34%);
}
.content__intro .prep-time {
  margin-top: 1rem;
  padding: 1rem;
  line-height: 1.2;
  border-radius: 1rem;
  background-color: hsl(330, 100%, 98%);
}
.content__intro .prep-time li::marker {
  color: hsl(332, 51%, 32%);
}
.content__intro .prep-time h2 {
  font-family: Outfit;
  color: hsl(332, 51%, 32%);
}

.content__ingredients {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  color: hsl(30, 10%, 34%);
  border-bottom: solid 1px hsl(30, 18%, 87%);
}
.content__ingredients h2,
.content__ingredients li::marker {
  color: hsl(14, 45%, 36%);
}

.content__instructions {
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: solid 1px hsl(30, 18%, 87%);
}
.content__instructions h2 {
  color: hsl(14, 45%, 36%);
  margin-bottom: 0.5rem;
}
.content__instructions li {
  color: hsl(30, 10%, 34%);
}
.content__instructions li::marker {
  font-weight: bold;
  color: hsl(14, 45%, 36%);
}

.content__nutrition {
  padding-top: 1rem;
}
.content__nutrition h2 {
  color: hsl(14, 45%, 36%);
  margin-bottom: 1rem;
}
.content__nutrition p {
  color: hsl(30, 10%, 34%);
  margin-bottom: 1rem;
}
.content__nutrition table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  color: hsl(30, 10%, 34%);
}
.content__nutrition table tr:nth-child(-n+3) {
  border-bottom: 1px solid hsl(30, 18%, 87%);
}
.content__nutrition table td {
  padding: 0.5rem;
}
.content__nutrition table td:nth-child(1) {
  width: 47%;
  padding-left: 2rem;
}
.content__nutrition table td:nth-child(2) {
  color: hsl(14, 45%, 36%);
  font-weight: 600;
}

@media (768px <= width <= 992px) {
  .content {
    min-width: 385px;
  }
  section {
    padding: 0 3rem;
  }
}
@media (1024px <= width <= 1440px) {
  body {
    padding: 3rem 10rem;
    background-color: hsl(30, 54%, 90%);
  }
  section {
    padding: 0;
  }
  .content {
    max-width: 44rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: hsl(0, 0%, 100%);
  }
  .content .page-image {
    border-radius: 1rem;
  }
}/*# sourceMappingURL=index.css.map */