html,
body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
}
body {
  min-height: 100vh;
  align-items: center;
  overflow-y: auto;
  background-color: antiquewhite;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.attribution {
  font-size: 15px;
  text-align: center;
  margin: 30px 0;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
.Container {
  background-color: white;
  border-radius: 50px;
  width: 90%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 2%;
}
h1 {
  font-family: "/assets/fonts/young-serif/YoungSerif-Regular.ttf";
  font-size: 350%;
}
hr {
  margin: 30px 0;
}
.image {
  width: 100%;
  margin: auto;
}
.image img {
  width: 100%;
  border-radius: 20px;
}
.desc {
  margin: 30px 0;
  color: rgb(85, 85, 85);
}
.Preparation {
  background-color: rgb(253, 247, 238);
  padding: 10px 20px;
  border-radius: 20px;
}
.Preparation-title {
  color: brown;
  width: 100%;
  padding-left: 10px;
  font-weight: bold;
}
.Preparation-list,
.Ingredients-list,
.Instructions-list {
  color: brown;
  list-style: none;
  padding-left: 15px;
}
.Preparation-list li {
  margin: 10px 0;
  color: black;
}
.list-bullet {
  color: brown;
  font-size: 20px;
  margin-right: 20px;
  font-weight: bold;
  height: 100%;
}
.list-item {
  font-weight: bold;
}

.Instructions-list li {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0;
  line-height: 1.6;
  color: rgb(85, 85, 85);
}

.item-list-number {
  color: brown;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  width: 30px;
}

.item-content {
  flex: 1;
}

.Ingredients-title,
.Instructions-title,
.Nutrition-title {
  font-family: "/assets/fonts/young-serif/YoungSerif-Regular.ttf";
  font-size: 200%;
  color: brown;
  width: 100%;
  padding-left: 10px;
  font-weight: bold;
}
.Ingredients-list li {
  color: rgb(85, 85, 85);
}
.Nutrition-table {
  width: 100%;
  border-collapse: collapse;
}
.Nutrition-table tr td {
  padding-left: 20px;
  border-bottom: 1px solid #ccc;
  padding: 20px;
}
.Nutrition-ammount {
  color: brown;
  font-weight: bold;
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.8rem;
  }
  .image {
    border-radius: 50px;
    width: 90%;
  }
}
