body {
    background-color: hsl(30, 54%, 90%);
    font-family: "Young Serif", serif;
    height: 100%;
}

ul li::marker {
    color: hsl(332, 51%, 32%);
  }
  
  ol li::marker {
    color: hsl(332, 51%, 32%); 
    font-weight: bold;
  }

p, ul, ol{
    font-size: 16px;
    color: hsl(30, 10%, 34%);
    line-height: 2; /* Ou use um valor como 24px */
}

h1 {
    color: hsl(24, 5%, 18%);
}

h3 {
    color: hsl(14, 45%, 36%);
}

h5 {
    color: hsl(332, 51%, 32%);
}

.destaque {
    font-weight: bold;
    color: hsl(30, 10%, 34%);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 100%);
    width: 800px;
    border-radius: 30px;
}

.recipe-informations {
padding: 30px;
}

.recipe-informations img {
    width: 100%;
    border-radius: 30px;
}

.preparation-time {
    background-color: hsl(330, 100%, 98%);
    padding: 20px;
    border-radius: 10px;
}
 
  .nutrition-grid {
    display: flex;
    flex-direction: column;
  }
  
  .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid hsl(30, 18%, 87%);
  }
  
  .row:last-child {
    border-bottom: none;
  }
  
  .label {
    color: hsl(30, 10%, 34%);
    margin-left: 50px;
  }
  
  .value {
    font-weight: bold;
    color: hsl(332, 51%, 32%);
}


@media (max-width: 576px) {
    .card {
      width: 100%;
      height: 100%;
      border-radius: 0;
    }
  
    .recipe-informations {
      padding: 20px;
    }
  
    .recipe-informations img {
      border-radius: 0;
    }
  
    h1 {
      font-size: 28px;
    }
  
    p, ul, ol {
      font-size: 14px;
      line-height: 1.8;
    }
  
    .nutrition-grid .label {
      margin-left: 0;
    }
  
    .preparation-time {
      padding: 15px;
    }
  }
  