*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  background: hsl(30, 54%, 90%);
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

span {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: normal;
}

li {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: normal;
}

li::marker {
  color: hsl(14, 45%, 36%);
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: normal;
}

.line {
  width: 100%;
  height: 1px;
  margin: 35px 0;
  background-color: hsl(30, 54%, 90%);
}

img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
}

main {
  width: 700px;
  border: 2px solid;
  background: hsl(0, 0%, 100%);
  border: none;
  padding: 2rem;
  border-radius: 25px;
}

header h1 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  margin-bottom: 15px;
}
header p {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  margin-bottom: 20px;
  line-height: 1.5;
}

.Preparation-time {
  background-color: hsl(330, 100%, 98%);
  padding: 1.2rem;
  margin-bottom: 30px;
  border-radius: 12px;
}
.Preparation-time h2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  margin-bottom: 10px;
}
.Preparation-time ul {
  margin-left: 1.5rem;
}
.Preparation-time ul li {
  padding-left: 1rem;
  line-height: 1.9;
}

.Ingredients h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  color: hsl(14, 45%, 36%);
  margin-bottom: 15px;
}
.Ingredients ul {
  margin-left: 1.3rem;
}
.Ingredients ul li {
  padding-left: 1rem;
  line-height: 1.9;
}

.Instructions h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  color: hsl(14, 45%, 36%);
  margin-bottom: 15px;
}
.Instructions ol {
  margin-left: 1.3rem;
}
.Instructions ol li {
  padding-left: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.Nutrition h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  color: hsl(14, 45%, 36%);
  margin-bottom: 15px;
}
.Nutrition p {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
  margin-bottom: 20px;
  line-height: 1.5;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: normal;
}

tr:not(:last-child) {
  padding-left: 5rem;
  border-bottom: 1px solid hsl(30, 54%, 90%);
}

td {
  padding: 0.7rem;
}
td:nth-of-type(2) {
  color: hsl(14, 45%, 36%);
  font-weight: 700;
}
td:nth-of-type(1) {
  padding-left: 2.5rem;
}

@media (max-width: 700px) {
  body {
    margin-top: unset;
    margin-bottom: unset;
  }
  main {
    border-radius: unset;
    width: 100%;
  }
  h1 {
    font-size: clamp(24px, 5vw, 36px);
  }
  h2 {
    font-size: clamp(20px, 4vw, 28px);
  }
  p {
    font-size: clamp(15px, 2.5vw, 16px);
  }
  li {
    font-size: clamp(15px, 2.5vw, 16px);
  }
}
@media (max-width: 500px) {
  main {
    padding: unset;
    background: hsl(0, 0%, 100%);
    max-width: unset;
    margin: unset;
    border-radius: unset;
  }
  img {
    border-radius: unset;
  }
  .Preparation-time {
    margin-left: 2.5rem;
    margin-right: 2rem;
  }
  header, .Ingredients, .Instructions, .Nutrition {
    margin: 0 2rem;
  }
}/*# sourceMappingURL=review.css.map */