body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .header-img {
    width: 100%;
    border-radius: 10px;
  }
  
  h1, h2, h4 {
    color: #2c3e50;
    font-family: 'Young Serif', serif;
    text-align: center;
  }
  
  p {
    margin: 0 20px 20px 20px;
    font-family: 'Outfit', sans-serif;
  }
  
  .time, .ingredients, .instructions, .nutrition {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  ul, ol {
    margin: 0 0 20px 20px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ddd;
  }
  
  .side {
    float: right;
    font-weight: bold;
  }
  
  .nutrition p {
    margin: 10px 0;
  }
  
  .time {
    border: 2px solid #fcb69f;
  }
  