* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(30, 54%, 90%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  margin: 10vh auto;
  width: 80%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.container ul {
  list-style: none;
}

.img {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.img img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  display: block;
}

.img h1 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 1rem;
  color: hsl(24, 5%, 18%);
}

.recipe-detail p {
  font-weight: 300;
  color: hsl(30, 10%, 34%);
  padding: 0.5rem;
  margin: 0.5rem;
  max-width: 600px;
}

#prep {
  background-color: hsl(330, 100%, 98%);
  border-radius: 0.8rem;
  padding: 1rem;
  width: 100%;
  max-width: 600px;
}

#prep ul li span {
  margin: 0.5rem 0;
  font-weight: bold;
}
#prep ul li p {
  font-weight: 300;
  color: hsl(30, 10%, 34%);
}
.section {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  width: 100%;
  max-width: 600px;
}

.section h1 {
  color: hsl(14, 45%, 36%);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.section li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.5rem;
}
.Heading {
  border-bottom: 1px solid #ccc;
}
.section li::marker {
  color: hsl(14, 45%, 36%);
}
.container .Cook {
  font-weight: 300;
  color: hsl(30, 10%, 34%);
}
.container .Cook span {
  font-weight: bold;
  font-size: 16px;
  color: hsl(14, 45%, 36%);
}
.section table {
  width: 100%;
  border-collapse: collapse;
}
.section table tr {
  border-bottom: 1px solid hsl(30, 18%, 87%);
}
.section able td {
  padding: 1rem 0;
  font-size: 1rem;
  color: hsl(30, 10%, 34%);
}
.section table td:last-child {
  font-weight: bold;
  color: hsl(14, 45%, 36%);
  text-align: right;
}
