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

  body {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  background-color: hsl(30, 54%, 90%);
}


  .container {
    width: 60%;
    margin: 2rem auto;
    border-radius: 40px;
    background-color: #fff;
    
  }

  .banner {
    text-align: center;
  }

  .banner img {
    width: 100%;
    padding: 20px;
    border-radius: 40px;
  }

  .recipe h1 {
    font-size: 3rem;
    padding: 20px;
    font-family: 'Young Serif', serif;
    font-weight: 200;
    color: hsl(24, 5%, 18%);
  }

  .recipe p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    padding: 20px;
    margin: 0 auto;
  }

  .preparation {
    font-family: 'Outfit', sans-serif;
    padding: 10px 40px;
    margin: 1rem;
    border-radius: 20px;
    background-color: hsla(332, 80%, 81%, 0.4);
  }

  .preparation h2 {
    color: hsl(332, 67%, 51%);
  }

  .preparation span {
    color:hsl(30, 10%, 34%);
  }

  .preparation li {
    margin: 1rem;
  }

  .preparation ul li {
    padding-left: 20px;
    color: hsl(24, 5%, 18%);
  }

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

  .ingredients {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    padding: 10px 5px;
    margin: 1rem;
    border-bottom: 1px solid hsl(30, 14%, 83%);
  }

  .ingredients h2 {
    font-family: 'Young Serif', sans-serif;
    color: hsl(14, 45%, 36%);
  }


  .ingredients ul li {
    padding-left: 20px;
    color:hsl(30, 10%, 34%);
  }

  .ingredients li {
    margin: 1rem;
  }

  .ingredients ul li::marker {
    color: hsl(14, 45%, 36%);
    font-size: 0.9rem;
  }

  .instructions {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    padding: 10px 5px;
    margin: 1rem;
    border-bottom: 1px solid hsl(30, 14%, 83%);
  }

  .instructions h2 {
    font-family: 'Young Serif', sans-serif;
    color: hsl(14, 45%, 36%);
  }

  .instructions li {
    margin: 1rem;
  }

  .instructions ol li{
    padding-left: 20px;
    color:hsl(30, 10%, 34%);
  }

  .instructions ol li::marker {
    color: hsl(14, 88%, 35%);
    font-size: 1.1rem;
  }

  .nutrition {
      font-family: 'Outfit', serif;
      padding: 20px;
      margin: 1rem 0;
    }

    .nutrition h2 {
      font-family: 'Young Serif', serif;
      color: hsl(14, 45%, 36%);
      margin-bottom: 10px;
    }

    .nutrition p {
      font-size: 1rem;
      color: #666;
      margin-bottom: 20px;
    }
  
  table {
      width: 100%;
      border-collapse: collapse;
    }

    table th,
    table td {
      text-align: left;
      padding: 10px;
      font-size: 1rem;
      color: #333;
      border-bottom: 1px solid #ddd;
    }

    table td:last-child {
      text-align: left;
      font-weight: 600;
      color: hsl(14, 45%, 36%);
    }
