@font-face {
  font-family: young;
  src: url(./assets/fonts/young-serif/YoungSerif-Regular.ttf);
}

@font-face {
  font-family: outfit;
  src: url(./assets/fonts/outfit/Outfit-VariableFont_wght.ttf);
}

:root {
  --Stone-100: hsl(30, 54%, 90%);
  --Stone-150: hsl(30, 18%, 87%);
  --Stone-600: hsl(30, 10%, 34%);
  --Stone-900: hsl(24, 5%, 18%);
  --Brown-800: hsl(14, 45%, 36%);
  --Rose-800: hsl(332, 51%, 32%);
  --Rose-50: hsl(330, 100%, 98%);
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  /* height: 100vh; */
  background-color: var(--Stone-100);

  display: flex;
  justify-content: center;
  align-items: center;
}

h1,
h2 {
  font-family: young;
}

p,
li {
  font-family: outfit;
  font-weight: 400;
  font-size: 1.2rem;
}

.blog-page {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog {
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  padding: 4rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog figure {
  width: 100%;
}
.blog figure img {
  width: 100%;
  border-radius: 1rem;
}

.blog h1 {
  font-size: 3rem;
  color: var(--Stone-900);
}

.pr-time {
  background-color: var(--Rose-50);
  padding: 2rem;
  border-radius: 1rem;
}

.pr-time h2 {
  font-size: 1.5rem;
  font-family: outfit;
  color: var(--Rose-800);
  margin-bottom: 1rem;
}

.pr-time ul li {
  list-style-position: inside;
  padding: 0.5rem;
  /* padding-left: 1rem; */
}
.pr-time ul li::marker {
  color: var(--Rose-800);
}

.read {
  margin: 1rem 0;
  position: relative;
}

ul,
ol {
  padding-left: 1rem;
}

.read ul li,
.read ol li {
  list-style-position: outside;
  padding-left: 1.5rem;
}

.read h2 {
  font-size: 2rem;
  color: var(--Brown-800);
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
}

.read ul li::marker,
.read ol li::marker {
  color: var(--Brown-800);
  padding-right: 1rem;
}

.read ul,
.read ol {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.read ol li span,
.pr-time ul li span {
  font-weight: 600;
  color: var(--Stone-600);
}

.nutrition p {
  margin-bottom: 1rem;
}

.nutrition table {
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse;
  font-family: outfit;
}

.nutrition table tr {
  border-bottom: 1px solid var(--Stone-600);
}

.nutrition table tr:last-of-type {
  border: none;
}
.nutrition table tr td {
  width: 50%;

  padding: 1rem;
}

.nutrition table tr td:nth-child(2) {
  font-weight: 600;
  color: var(--Brown-800);
}
