
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(30, 54%, 90%);
    color: hsl(24, 5%, 18%);
    padding: 2rem;
    display: flex;
    justify-content: center;
  }
  

  .recipe-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  

  .recipe-image {
    width: 100%;
    display: block;
  }
  

  .recipe-content {
    padding: 2rem;
  }
  
  .recipe-title {
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .recipe-description {
    margin-bottom: 1.5rem;
  }
  

  h2 {
    color: hsl(14, 45%, 36%);
    font-family: 'Young Serif', serif;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  

  ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  ul li, ol li {
    margin-bottom: 0.5rem;
  }
  
  strong {
    font-weight: 600;
  }
  

  .nutrition table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
  }
  
  .nutrition td {
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
  }
  

  @media (max-width: 600px) {
    .recipe-content {
      padding: 1rem;
    }
  
    .recipe-title {
      font-size: 1.5rem;
    }
  }