@font-face {
  font-family: Outfit;
  src: url("assets/fonts/outfit/Outfit-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Young Serif";
  src: url("/assets/fonts/young-serif/YoungSerif-Regular.ttf");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-color: hsl(30, 54%, 90%);
  font-family: Outfit;
  color: hsl(30, 10%, 34%);
}
main {
  width: 50%;
  background-color: white;
  border-radius: 25px;
  margin: 100px auto;
  padding: 40px;
}
main img {
  width: 100%;
  border-radius: 10px;
}
aside {
  background-color: hsl(330, 100%, 98%);
  font-family: Outfit;
  padding: 20px;
  padding-top: 0;
  border-radius: 10px;
}
.instructions li {
  line-height: 1.5;
}
.ingredients,
.instructions,
.nutrition {
  margin-top: 30px;
  padding-bottom: 20px;
}
.instructions,
.ingredients {
  border-bottom: 1px solid hsl(30, 10%, 34%);
}
h1 {
  font-size: 40px;
  padding-top: 25px;
  padding-bottom: 20px;
  color: hsl(24, 5%, 18%);
  font-family: "Young Serif";
}
h3 {
  padding-top: 20px;
  padding-bottom: 10px;
  color: hsl(332, 51%, 32%);
}
h2 {
  font-family: "Young Serif";
  margin-bottom: 20px;
  font-size: 27px;
}
p {
  padding-bottom: 20px;
}
ul,
ol {
  margin-left: 25px;
}
ul li {
  font-size: 12px;
}
ol li {
  font-weight: bold;
}
span {
  font-family: Outfit;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  left: 10px;
}
li::marker,
h2 {
  color: hsl(14, 45%, 36%);
}
li {
  margin: 10px 0;
}
table {
  width: 100%;
  text-align: left;
}
th {
  font-weight: normal;
  padding: 10px 20px;
}
td {
  color: hsl(14, 45%, 36%);
  font-weight: bold;
}
table {
  border-collapse: collapse;
}
td,
th {
  border-bottom: 1px solid hsl(30, 10%, 34%);
}
.last-row {
  border-bottom: none;
}
@media only screen and (max-width: 700px) {
  main {
    width: 75%;
  }
}
@media only screen and (max-width: 600px) {
  main {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
  }
}
