body {
    background-color: hsl(30, 54%, 90%);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: hsl(30, 10%, 34%);
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
  }
  
  .container {
    background-color: white;
    max-width: 650px;
    margin: auto;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  img {
    width: 100%;
    border-radius: 0.75rem;
  }
  
  h1 {
    font-family: 'Young Serif', serif;
    color: hsl(24, 5%, 18%);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-family: 'Young Serif', serif;
    color: hsl(14, 45%, 36%);
    margin-top: 2rem;
  }
  
  h3 {
    font-family: 'Outfit', sans-serif;
    color: hsl(332, 51%, 32%);
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
  
  ul, ol {
    padding-left: 1.5rem;
  }
  
  .prep-time {
    background-color: hsl(330, 100%, 98%);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .nutrition {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  
  .nutrition th, .nutrition td {
    text-align: left;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(30, 18%, 87%);
  }
  
  .nutrition th {
    width: 50%;
  }
  