/* General Styles */
body {
    background-color: hsl(30, 54%, 90%);
    font-family: 'Outfit', sans-serif;
    color: hsl(30, 10%, 34%);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  /* Card Layout */
  main {
    background-color: hsl(0, 0%, 100%);
    max-width: 720px; /* Adjust width */
    margin: auto;
    padding: 30px; /* More padding */
    border-radius: 16px; /* More rounded */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  /* Image */
  img {
    width: 100%;
    border-radius: 12px;
  }
  
  /* Headings */
  h1, h3 {
    font-family: 'Young Serif', serif;
    color: hsl(24, 5%, 18%);
  }
  
  h1 {
    font-size: 36px; /* Larger title */
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 24px; /* Adjust heading size */
    margin-top: 25px;
    color: hsl(14, 45%, 36%);
  }
  
  /* Text */
  p {
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  /* Lists */
  ul, ol {
    padding-left: 25px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  /* Preparation Time Box */
  .preparation-time {
    background-color: hsl(330, 100%, 98%);
    padding: 20px;
    border-radius: 12px;
  }
  
  .preparation-time h3 {
    color: hsl(332, 51%, 32%);
    font-size: 20px;
    font-family: 'Outfit', sans-serif;;
  }
  
  strong {
    color:black
  }
  
  /* Table */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  th, td {
    padding: 12px;
    border-bottom: 1px solid hsl(30, 18%, 87%);
  }
  
  th {
    text-align: left;
    font-weight: 600;
  }
  
  td {
    text-align: right;
    font-weight: 700;
    color: hsl(14, 45%, 36%);
  }

  .abc{
    font-weight: lighter;
  }
  
  /* Mobile Styles */
  @media (max-width: 375px) {
    main {
      padding: 20px;
    }
  }


  ol {
    list-style: none;
    counter-reset: list-counter;
  }
  
  ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px; /* Adjust spacing */
  }
  
  ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700; /* Bold numbering */
    color: hsl(14, 45%, 36%);
  }
  
