@font-face {
  font-family: 'Young Serif';
  src: url(assets/fonts/young-serif/YoungSerif-Regular.ttf);
}

@font-face {
  font-family: 'Outfit';
  src: url(assets/fonts/outfit/Outfit-VariableFont_wght.ttf);
}

body {
  background-color: hsl(30, 54%, 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.wrapper {
  max-inline-size: 700px;
  padding: 50px;
}

.recipe-list {
  background-color: hsl(0, 0%, 100%);
  color: hsl(30, 10%, 34%);
  font-family: 'Outfit', sans-serif;
  padding: 30px;
  border-radius: 10px;
}

.recipe-list img {
  max-inline-size: 100%;
  border-radius: 10px;
}

.recipe-list h1 {
  font-family: 'Young Serif', sans-serif;
  font-weight: 400;
  color: hsl(24, 5%, 18%);
  margin-block: 25px;
}

.recipe-list h2 {
  font-family: 'Young Serif', sans-serif;
  font-weight: 400;
  color: hsl(14, 45%, 36%);
  margin-block: 25px;
}

.recipe-list p {
  margin: 0;
  margin-block-end: 25px;
}

.recipe-list hr {
  border: 1px solid hsl(30, 18%, 87%);
  margin-block: 30px;
}

.recipe-list li {
  margin-block: 20px;
}

.recipe-list table {
  inline-size: 100%;
}

.recipe-list th, 
.recipe-list td {
  padding-inline-start: 15px;
  padding-block: 15px;
  margin: 0;
  border-bottom: 1px solid hsl(30, 18%, 87%);
  text-align: left;
}

.recipe-list th {
  color: hsl(14, 45%, 36%);
}

.last-row th, 
.last-row td {
  border-bottom: none;
}

.purple-section {
  background-color: hsl(330, 100%, 98%);
  padding-block: 20px;
  padding-inline: 20px;
  border-radius: 10px;
}

.purple-section h3 {
  color: hsl(332, 51%, 32%);
  margin: 0;
}

.purple-section ul {
  margin: 0;
  padding-inline-start: 25px;
}

.purple-section li {
  margin-block: 10px;
}