* {
  font-family: "Outfit", serif;
  color: hsl(30, 10%, 34%);
}

b {
  color: inherit;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

h1,
h2 {
  font-family: "Young Serif", serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: hsl(24, 5%, 18%);
}

h2 {
  font-weight: 400;
  color: hsl(14, 45%, 36%);
}

li {
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

ol,
ul {
  padding-left: 2rem;
}

ol > li::marker {
  font-weight: 700;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

body {
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: hsl(30, 54%, 90%);
}

.content {
  background-color: white;
}

.content > img {
  width: 100%;
}

.text {
  padding: 2rem;
  padding-top: 0;
}

@media (min-width: 650px) {
  .content {
    padding: 3rem;
    margin: 7.5% 5% 7.5% 5%;

    max-width: 650px;
    border-radius: 2rem;
  }

  .content > img {
    border-radius: 1rem;
  }

  .text {
    padding: 0px;
  }
}

.preparation-box {
  padding: 2.5%;
  border-radius: 1rem;
  background-color: hsl(330, 100%, 98%);
}

.preparation-box h2 {
  margin: 0.5rem;
  color: hsl(332, 51%, 32%);

  font-size: 1.25rem;
  font-family: inherit;
  font-weight: 700;
}
.preparation-box li {
  color: hsl(332, 51%, 32%);
}

.text li {
  color: hsl(14, 45%, 36%);
}

.nutrition-table {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 1fr 1fr;
  row-gap: 1px;
}

.nutrition-table > * {
  border-bottom: 1px solid hsl(24, 5%, 18%);
  padding: 1rem;
}

.nutrition-stat {
  color: hsl(14, 45%, 36%);
  font-weight: 700;
}
