@font-face {
  font-family: 'MyFont';
  src: url(./assets/fonts/outfit/Outfit-VariableFont_wght.ttf)
    format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url(./assets/fonts/outfit/static/Outfit-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url(./assets/fonts/outfit/static/Outfit-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'YoungFont';
  src: url(./assets/fonts/young-serif/YoungSerif-Regular.ttf) format('truetype');
  font-weight: 400;
  vertical-align: auto;
}
body {
  background-color: hsl(30, 54%, 90%);
  color: hsl(30, 10%, 34%);
  font-size: 16px;
  display: flex;
  font-family: 'MyFont', sans-serif;
  /* height: 100vh; */
  justify-content: center;
  align-items: center;
}
.main__container {
  background-color: white;
  border-radius: 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  padding: 20px;
  width: 400px;
}
.food__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food__times {
  background-color: hsla(323, 52%, 84%, 0.164);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.times-list {
  margin: 0;
}
.food__img {
  height: 180px;
  border-radius: 10px;
}
.food__recipe {
  display: flex;
  flex-direction: column;
}
.title {
  font-family: 'YoungFont', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.food.title {
  color: black;
}
.food__recipe .title {
  color: hsl(14, 45%, 36%);
  font-size: 1.4rem;
}
.food__times .semi-title {
  color: hsl(332, 51%, 32%);
  font-size: 16px;
  margin: 0;
}
.food__info .title {
  color: hsl(24, 5%, 18%);
  font-size: 1.7rem;
}
.food__nutrition {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nutrition-table {
  display: flex;
  flex-direction: column;
}
.nutrition-table:last-child {
  border: none;
}
ul,
ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
li {
  padding-left: 20px;
}
li::marker {
  color: hsl(14, 45%, 36%);
  font-weight: 700;
  font-size: 13px;
}
li strong {
  font-weight: 700;
}
table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  display: flex;
}
th {
  font-size: 12px;
  padding: 10px 20px;
  width: 50%;
  text-align: left;
  font-weight: 600;
}
.attr-value {
  font-weight: 700;
  color: hsl(14, 45%, 36%);
}
table tr:last-child {
  border-bottom: none;
}
