@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');


body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3e9df;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;

}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/*.container h1 {
    color: brown;
}*/

.hero-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: brown;
}
h2 {
    color:#875344 ;
}

.description {
    color: #555;
    margin-bottom: 1.5rem;
}

.prep-time {
    background-color: #fff7fc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.prep-time h3 {
    margin-top: 0;
    color: #732848;
}

ul,
ol {
    padding-left: 1.2rem;
}

.prep-time li::marker {
    color: #732848;
}

.ingredients li,
.instructions li {
    margin-bottom: 0.75rem;
}
.ingredients li::marker {
    color:brown ;
}
.instructions strong {
    /*display: block;*/
    margin-bottom: 0.2rem;
}
.instructions li::marker {
    color: #732848;
    font-size: larger;
}
.note {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

span {
    float: right;
    color: brown;
    font-weight: 900;
}


@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .prep-time ul {
    padding-left: 1rem;
  }

  .nutrition {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-image {
    border-radius: 0.5rem;
  }

  .instructions strong {
    font-weight: 600;
  }
}
