@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  src: url("../../assets/fonts/outfit/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Young Serif";
  src: url("../../assets/fonts/young-serif/YoungSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
.recipe {
  background-color: #ffffff;
  width: 100%;
}
@media (min-width: 640px) {
  .recipe {
    border-radius: 24px;
    margin: 0 auto;
    margin-bottom: 128px;
    margin-top: 128px;
    max-width: 616px;
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .recipe {
    max-width: 736px;
  }
}
@media (min-width: 640px) {
  .recipe__image {
    border-radius: 12px;
    margin-bottom: 40px;
  }
}
.recipe__content {
  padding: 40px 32px;
}
@media (min-width: 640px) {
  .recipe__content {
    padding: 0;
  }
}
.recipe__title {
  color: #312e2c;
  margin-bottom: 24px;
  font-size: 40px;
  font-family: "Young Serif", serif;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}
.recipe__description {
  color: #5f564d;
  margin-bottom: 32px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__preparation {
  background-color: #fff7fb;
  margin-bottom: 32px;
  padding: 24px;
}
.recipe__preparation-title {
  color: #7a284e;
  margin-bottom: 16px;
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1;
  font-style: normal;
}
.recipe ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recipe__preparation-item {
  align-items: center;
  color: #5f564d;
  display: flex;
  margin-bottom: 8px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__preparation-item::before {
  color: #7a284e;
  content: "•";
  font-size: 1.5rem;
  margin-left: 8px;
  margin-right: 24px;
}
.recipe__section-title {
  color: #854632;
  margin-bottom: 24px;
  font-size: 28px;
  font-family: "Young Serif", serif;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}
.recipe__ingredients {
  border-bottom: 1px solid #e3ddd7;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.recipe__ingredients-item {
  align-items: center;
  color: #5f564d;
  display: flex;
  margin-bottom: 8px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__ingredients-item::before {
  color: #854632;
  content: "•";
  font-size: 1.5rem;
  margin-left: 8px;
  margin-right: 24px;
}
.recipe__instructions {
  border-bottom: 1px solid #e3ddd7;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.recipe__instructions-list {
  padding-left: 24px;
}
.recipe__instructions-item {
  color: #5f564d;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__instructions-item::marker {
  color: #854632;
  font-weight: bold;
}
.recipe__nutrition-description {
  color: #5f564d;
  margin-bottom: 24px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__nutrition-table {
  border-collapse: collapse;
  width: 100%;
}
.recipe__nutrition-table td {
  border-bottom: 1px solid #e3ddd7;
  padding-bottom: 12px;
  padding-top: 12px;
}
.recipe__nutrition-table tr:last-child td {
  border-bottom: none;
}
.recipe__nutrition-label {
  color: #5f564d;
  padding-left: 32px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
.recipe__nutrition-value {
  color: #854632;
  font-weight: bold;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}

body {
  background-color: #f3e5d7;
}

footer {
  padding: 24px;
  text-align: center;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}
@media (min-width: 640px) {
  footer {
    margin: 0 auto;
    max-width: 616px;
  }
}
footer a {
  color: #7a284e;
}

main {
  margin-top: auto;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/*# sourceMappingURL=styles.css.map */
