:root {
  /* ## Colors */

  --White: hsl(0, 0%, 100%);

  --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;
}
body {
  background-color: var(--Stone-100);
  font-family: "Inter", sans-serif;
}
.container {
  margin: 10px auto;
  width: 90%;
  max-width: 1440px;
  background-color: var(--White);
  padding: 2rem;
  border-radius: 1rem;
}
.container img {
  width: 100%;
  border-radius: 1rem;
}
.text {
  width: 100%;
  line-height: 1.5;
}
.text h1 {
  color: var(--Stone-600);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.text p {
  color: var(--Stone-600);
  font-size: 1.2rem;
}

h4 {
  color: var(--Rose-800);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.time {
  background-color: var(--Rose-50);
  padding: 1rem;
  border-radius: 1rem;
}
ul {
  color: var(--Stone-600);
  font-size: 1rem;
  line-height: 1.5;
}
li {
  margin-bottom: 0.5rem;
}
h2 {
  color: var(--Brown-800);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
ol {
  list-style: none;
  color: var(--Stone-600);
  font-size: 1rem;
  line-height: 1.5;
}
span {
  color: var(--Rose-800);
  font-weight: 700;
  margin-right: 10px;
}
hr {
  margin: 2rem 0;
  border: 1px solid var(--Stone-150);
  font-size: 5px;
}
.nutrition {
  list-style: none;
  color: var(--Stone-600);
  justify-content: center;
  align-items: center;
}
.nutrition span {
  color: var(--Brown-800);
  display: flex;
  justify-content: flex-end;
}
