/* Import font family */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Young+Serif&display=swap");

/* Create variables for colors */
:root {
  --White: hsl(0, 0%, 100%);
  --Stone100: hsl(30, 54%, 90%);
  --Stone150: hsl(30, 18%, 87%);
  --Stone600: hsl(30, 10%, 34%);
  --Stone900: hsl(24, 5%, 18%);
  --Brown800: hsl(14, 45%, 36%);
  --Rose800: hsla(332, 51%, 32%);
  --Rose50: hsl(330, 100%, 98%);
}
html {
  font-family: "Outfit", sans-serif;
  background-color: var(--Stone100);
}
.container {
  background-color: var(--White);
  width: 50%;
  margin: 2em auto;
  padding: 1.5em;
  color: var(--Stone900);
  border-radius: 30px;
  font-size: 16px;
}
img {
  display: block;
  width: 95%;
  border-radius: 20px;
  margin: 0 auto;
}
.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

h2 {
  color: var(--Brown800);
}
h2,
h1 {
  font-family: "Young Serif", sans-serif;
}
.prep-time {
  background-color: var(--Rose50);
  padding: 10px;
  border-radius: 20px;
}
#prep-title {
  color: var(--Rose800);
  font-weight: bold;
}
.title {
  font-weight: bold;
}
.amount {
  color: var(--Brown800);
  font-weight: bold;
}
table {
  display: table;
  border-collapse: collapse;
  width: 95%;
}
td {
  padding: 10px 20px;
}
tr {
  border-bottom: 1.5px solid var(--Stone150);
}
.last {
  border: none;
}
ol li::marker {
  color: var(--Brown800);
  font-weight: bold;
  font-family: "Outfit", sans-serif;
}
