html body {
  background-color: #f3e5d8;
  display: flex;
  justify-content: center;
  height: 100vh;
  padding-top: 123px;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
@font-face {
  font-family: "young-serif";
  src: url("./assets/fonts/young-serif/YoungSerif-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "outfit";
  src: url("./assets/fonts/outfit/static/Outfit-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.containter {
  background-color: white;
  width: 736px;
  height: fit-content;
  border-radius: 24px;
}
.cover-image {
  padding: 30px;
}
.content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
img {
  /* padding: 30px; */
  width: 100%;
  border-radius: 12px;
}
ul {
  margin: 0;
}
li::marker {
  color: #824832;
  font-weight: 600;
}
li {
  padding-left: 1.5em;
}
.heading {
  font-family: "young-serif";
  font-size: 40px;
  font-weight: 100;
  margin: 0;
}
.description {
  font-family: "outfit";
  font-size: 18px;
  line-height: 150%;
  color: #4e4a47;

  margin: 0;
}
.preparation {
  background-color: #fff7fc;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.preparation-heading {
  color: #62243d;
  font-family: "outfit";
}
.preparation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bold-text {
  font-weight: 600;
  color: #4e4a47;
  font-size: 16px;
}
.regular-text {
  font-family: "outfit";
  color: #4e4a47;
  font-size: 16px;
}
.ingredients {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-heading {
  font-family: "young-serif";
  font-size: 28px;
  font-weight: 100;
  margin: 0;
  color: #824832;
}
.ingredients-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}
.notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.instructions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nutrition-table {
  width: 100%;
}
.nuitrition-title {
  padding-left: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  font-family: "outfit";
  color: #4e4a47;
  display: flex;
  gap: 0;
}
.nutrition-item {
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  font-family: "outfit";
  font-weight: bold;
  color: #824832;
}
@media (max-width: 500px) {
  html body {
    background-color: transparent;
    padding: 0;
    margin: 0;
  }
  .cover-image {
    padding: 0;
    
  }
  img{
    border-radius: 0px;
  }
}
