* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    min-height: 100vh;
    background-color: hsl(30, 54%, 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .container {
    padding: 32px;
    background-color: white;
    max-width: 736px;
    width: 100%;
    border-radius: 20px;
    margin: 20px 0;
  }
  
  .image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  
  img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
  }
  
  .container h1 {
    font-family: "Young Serif", serif;
    font-size: 28px;
    color: hsl(24, 5%, 18%);
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .container .description {
    font-family: "Outfit", sans-serif;
    color: hsl(30, 10%, 34%);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .preparation-time {
    background-color: hsl(330, 100%, 98%);
    padding: 24px;
    border-radius: 10px;
    margin: 30px 0;
    font-family: "Outfit", sans-serif;
  }
  
  .preparation-time h3 {
    color: hsl(332, 51%, 32%);
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .preparation-time ul {
    color: hsl(30, 10%, 34%);
    margin: 10px 0;
    line-height: 1.7;
    padding-left: 20px;
  }
  
  .ingredients,
  .instructions,
  .nutrition {
    color: hsl(30, 10%, 34%);
    margin-bottom: 30px;
  }
  
  .ingredients h2,
  .instructions h2,
  .nutrition h2 {
    color: hsl(14, 45%, 36%);
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .ingredients ul,
  .instructions ol {
    line-height: 1.7;
    padding-left: 20px;
    margin: 20px 0;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
  }
  
  .nutrition p {
    line-height: 1.7;
    margin: 20px 0;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
  }
  
  pre {
    line-height: 1.7;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: hsl(14, 45%, 36%);
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  
  hr {
    border: none;
    border-top: 1px solid hsl(30, 18%, 87%);
    margin: 15px 0;
  }
  
  @media screen and (max-width: 768px) {
    .container {
      padding: 24px;
    }
  
    .container h1 {
      font-size: 24px;
    }
  
    .preparation-time {
      padding: 20px;
    }
  
    .preparation-time h3 {
      font-size: 18px;
    }
  
    .ingredients h2,
    .instructions h2,
    .nutrition h2 {
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 375px) {
    body {
      padding: 0;
    }
  
    .container {
      border-radius: 0;
      margin: 0;
      padding: 16px;
    }
  
    .container h1 {
      font-size: 22px;
    }
  
    .preparation-time {
      padding: 16px;
    }
  
    .preparation-time h3 {
      font-size: 16px;
    }
  
    .ingredients h2,
    .instructions h2,
    .nutrition h2 {
      font-size: 18px;
    }
  
    pre {
      font-size: 14px;
    }
  }
  
  