@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #F3E5D7;
}

.banner {
  padding: 2.5rem;
}
@media (max-width: 37.5rem) {
  .banner {
    padding: 0 0 2.5rem;
  }
}
.banner-image {
  width: 100%;
  height: 18.75rem;
  border-radius: 0.75rem;
}
@media (max-width: 37.5rem) {
  .banner-image {
    border-radius: 0;
  }
}

.description-title {
  font-size: 2.5rem;
  font-family: "Young Serif", serif;
  margin-bottom: 1.5rem;
  color: #312E2C;
}

.preparation {
  padding: 1.5rem;
}
.preparation-title {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 1rem;
}
.preparation-title, .preparation ::marker {
  color: #7A284E;
}

.ingredients-list ::marker {
  color: #854632;
}

.nutrition-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}
.nutrition-table tr {
  border-bottom: 1px solid #E3DDD7;
}
.nutrition-table tr:last-child {
  border: none;
}
.nutrition-table tr td {
  padding: 0.75rem 0;
}
.nutrition-table tr td:first-child {
  padding-left: 2rem;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.nutrition-table tr td:last-child {
  padding-right: 2rem;
  color: #854632;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.nutrition-table tr:first-child td {
  margin-top: 0;
}
.nutrition-table tr:last-child td {
  margin-bottom: 0;
}

.card {
  max-width: 42rem;
  margin: 4rem auto;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
.card .recipe {
  padding: 0 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem 0;
}
.card .text {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #5F564D;
}
.card .text strong {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 150%;
}
.card .title {
  font-size: 1.75rem;
  font-family: "Young Serif", serif;
  margin-bottom: 1.5rem;
  color: #854632;
}
.card ul ::marker {
  font-size: 0.75rem;
  vertical-align: middle;
}
.card ol ::marker {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  line-height: 150%;
  color: #854632;
}
.card li {
  margin-left: 1.25rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
.card li:last-child {
  margin-bottom: 0;
}
.card hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E3DDD7;
}
@media (max-width: 37.5rem) {
  .card {
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    border-radius: 0rem;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=main.css.map */