
  body {
    font-family: "outfit", sans-serif;
    background-color: hsl(30, 54%, 90%);
    color: hsl(30, 10%, 34%);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
    
  }
  
  /* card container */
  .card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    max-width: 560px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* img styling */
  .omelette {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    object-fit: cover;
  }
  
  /* headings */
  h2 {
    color: hsl(24, 5%, 18%);
    font-size: 24px;
  }
  
  h3 {
    margin-top: 20px;
    color: hsl(14, 45%, 36%);
    font-size: 20px;
  }
  
  h2, h3 {
    text-align: left;
    font-family: "young serif", serif;
    font-weight: 700;
  }
  
  /* prep time style */
  .time {
    color: hsl(332, 51%, 32%);
    font-size: 16px;
  }
  
  .prep-time {
    background-color: hsl(330, 100%, 98%);
    padding: 1rem;
    border-radius: 10px;
  }
  
  /* list styling */
  ul, ol {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 0.5rem;
    font-size: 16px;
  }
  
  /* table styling */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: "outfit", sans-serif;
  }
  
  table td {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: hsl(14, 45%, 36%);
    font-size: 16px;
  }
  
  /* attribute footer */
  .attribute {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: hsl(24, 5%, 30%);
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  /* section spacing */
  section {
    margin-top: 30px;
  }