@import url("https://fonts.googleapis.com/css2?family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");
.outfit {
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.young-serif-regular {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
}

table {
  width: 100%;
  font-size: 0.95rem;
  color: rgb(109, 107, 107);
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
table th {
  font-weight: normal;
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 0.5rem 0;
}
table th:nth-child(2) {
  font-weight: bold;
  color: rgb(112, 37, 37);
}
table tr {
  border-bottom: 1px solid rgb(198, 198, 198);
}
table tr td {
  text-align: center;
  padding: 0.5rem 0;
}
table tr td:nth-child(2) {
  color: rgb(112, 37, 37);
  font-weight: bold;
}
table tr:last-child {
  border-bottom: none;
}

.nutrition {
  text-align: left;
}
.nutrition p {
  font-size: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.5rem;
  margin: 1em 0 2em 0;
  color: rgb(109, 107, 107);
}
.nutrition table tr td {
  padding-left: 1rem;
  text-align: left;
}

.preparation {
  width: 100%;
  background-color: #faf2f2;
  padding: 1rem;
  border-radius: 10px;
  line-height: 0.5em;
}
.preparation p {
  color: rgb(112, 37, 37) !important;
  font-size: 1rem;
  margin: 1em 0;
  font-weight: bolder;
}
.preparation ul li strong {
  font-weight: bolder;
}

ul li, ol li {
  margin: 0.5rem 1.2rem;
  padding-left: 1rem;
  color: rgb(109, 107, 107);
  font-size: 1rem;
  line-height: 1.5rem;
}
ul li::marker, ol li::marker {
  color: rgb(112, 37, 37);
  font-weight: bolder;
}

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

.recipe-container {
  display: block;
  width: 100%;
  padding: 2rem;
  max-width: 45vw;
  background-color: #fff;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0x 0px 1px 10px lightgray;
  transition: all 0.3s ease-in-out;
}
.recipe-container .image-container {
  display: block;
  width: 100%;
}
.recipe-container .image-container img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.recipe-container .content-container {
  font-family: "Outfit", serif;
}
.recipe-container .content-container .intro h1 {
  margin: 0.5em 0;
  font-size: 2rem;
  font-family: "Young Serif", serif !important;
}
.recipe-container .content-container .intro p {
  font-size: 0.95rem;
  line-height: 1.5rem;
  margin: 1em 0 2em 0;
  color: rgb(109, 107, 107);
}
.recipe-container .ingredients, .recipe-container .instructions {
  margin: 0.5rem 0;
  border-bottom: 1px solid lightgray;
  padding: 0.5rem 0;
}
.recipe-container .ingredients > h3, .recipe-container .instructions > h3 {
  margin-bottom: 1rem;
}

h3 {
  color: rgb(112, 37, 37);
  text-transform: capitalize;
  font-size: 1.5rem;
  font-family: serif;
  margin: 0;
}

strong {
  color: rgb(18, 15, 15);
}

footer > .attribution {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .recipe-container {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem;
  }
  .recipe-container h1 {
    line-height: 2rem;
  }
  .recipe-container .preparation > ul > li:nth-child(1) {
    line-height: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .recipe-container {
    width: 100%;
    max-width: 350px;
    padding: 0 !important;
    background-color: #fff;
    border-radius: 10px;
    margin: 2rem 3rem;
    box-shadow: 0x 0px 1px 10px lightgray;
  }
  .recipe-container .image-container {
    display: block;
    width: 100%;
  }
  .recipe-container .image-container img {
    display: block;
    width: 100%;
    border-radius: 0;
  }
  .recipe-container .content-container {
    font-family: "Outfit", serif;
    padding: 1rem 2rem;
  }
  .recipe-container .content-container .intro h1 {
    margin: 0.5em 0;
    font-size: 2rem;
    font-family: "Young Serif", serif !important;
  }
  .recipe-container .content-container .intro p {
    font-size: 0.95rem;
    line-height: 1.5rem;
    margin: 1em 0 2em 0;
    color: rgb(109, 107, 107);
  }
  .recipe-container .ingredients, .recipe-container .instructions, .recipe-container .nutrition {
    padding: 0.5rem 2rem;
  }
  .recipe-container .preparation > p {
    font-weight: bolder;
  }
  .recipe-container .preparation > ul > li:nth-child(1) {
    line-height: 1rem;
  }
}
body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f5e8d4;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
}/*# sourceMappingURL=index.css.map */