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

body {
  font-family: "Outfit", sans-serif;
  background-color: hsl(30, 54%, 90%);
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  line-height: 1.6;
}

p,
ul,
ol {
  font-size: 16px;
  color: hsl(30, 10%, 34%);
}

.container {
  max-width: 740px;
  padding: 40px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  color: hsl(14, 45%, 36%);
  margin-bottom: 15px;
}

.pic {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.title {
  font-family: "Young Serif", serif;
  font-weight: 400;
  color: hsl(24, 5%, 18%);
  margin-bottom: 20px;
}

.title__par {
  margin-bottom: 30px;
}

.preparation {
  background-color: hsl(330, 100%, 98%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.preparation h3 {
  color: hsl(332, 51%, 32%);
  margin-bottom: 15px;
}

.preparation__ul {
  padding-left: 20px;
}

.preparation__ul li {
  margin-bottom: 8px;
}

.preparation__ul li::marker {
  color: hsl(332, 51%, 32%);
}

.ingredients h2 {
  font-family: "Young Serif", serif;
  margin-bottom: 15px;
}

.ingredients__ul {
  padding-left: 20px;
  border-bottom: 1px solid hsl(30, 18%, 87%);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.ingredients__ul li {
  margin-bottom: 10px;
}

.ingredients__ul li::marker {
  color: hsl(14, 51%, 32%);
}

.instructions__ol {
  padding-left: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid hsl(30, 18%, 87%);
  margin-bottom: 30px;
}

.instructions__ol li {
  margin-bottom: 15px;
}

.instructions__ol li::marker {
  color: hsl(14, 51%, 32%);
  font-weight: bold;
}

.nutrition__par {
  margin-bottom: 15px;
}

table {
  font-size: 16px;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

td {
  padding: 10px 0;
  border-bottom: 1px solid hsl(30, 18%, 87%);
  color: hsl(30, 10%, 34%);
}

td:last-child {
  font-weight: bold;
  color: hsl(14, 51%, 32%);
}

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