@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "YoungSerif";
  src: url("../assets/fonts/young-serif/YoungSerif-Regular.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #F3E5D7;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1, h2, hr, p {
  margin: 0;
}

ol, ul {
  margin: 0;
  padding: 0;
}

#app {
  padding: 8rem 3rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  #app {
    padding: 0;
  }
}

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

.attribution a {
  color: hsl(228, 45%, 44%);
}

.card {
  border-radius: 1.5rem;
  background-color: #FFFFFF;
  padding: 2.5rem;
  width: 100%;
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
@media (max-width: 600px) {
  .card {
    border-radius: 0;
    padding: 0;
    row-gap: 0;
  }
}

.cardContent {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (max-width: 600px) {
  .cardContent {
    padding: 2.5rem 2rem;
  }
}

.cardContentColorDefault {
  font-weight: bold;
  color: #854632;
}

.cardContentColorPreparation {
  color: #7A284E;
}

.cardContentLine {
  border: 0;
  background-color: #E3DDD7;
  height: 1px;
  width: 100%;
}

.cardContentList {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.cardContentListItem {
  margin-left: 1rem;
  display: block;
}

.cardContentTable {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}

.cardContentTableRecord {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}

.cardContentTableRecordKey {
  margin-left: 2rem;
}

.cardContentTableRecordValue {
  color: #854632;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0;
}

.cardContentPreparation {
  border-radius: 0.75rem;
  background-color: #FFF7FB;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.cardContentPreparationTitle {
  color: #7A284E;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0;
}

.cardContentStructure {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.cardContentTextDefault {
  color: #5F564D;
  font-family: Outfit, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0;
}

.cardContentTitle {
  color: #312E2C;
  font-family: YoungSerif, serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .cardContentTitle {
    font-size: 2.25rem;
  }
}

.cardContentTitleDefault {
  color: #854632;
  font-family: YoungSerif, serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 100%;
  letter-spacing: 0;
}

.cardImage {
  border-radius: 0.75rem;
  height: 18.75rem;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .cardImage {
    border-radius: 0;
    height: auto;
    object-fit: fill;
  }
}

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