@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Space+Grotesk:wght@300..700&family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap");

:root {
  --clr-white: hsl(0, 0%, 100%);
  --clr-stone-100: hsl(30, 54%, 90%);
  --clr-stone-150: hsl(30, 18%, 87%);
  --clr-stone-600: hsl(30, 10%, 34%);
  --clr-stone-900: hsl(24, 5%, 18%);
  --clr-brown-800: hsl(14, 45%, 36%);
  --clr-rose-800: hsl(332, 51%, 32%);
  --clr-rose-50: hsl(330, 100%, 98%);

  --font-size: 11.5px;

  --font-young-serif: "Young Serif";
  --font-outfit: "Outfit";

  --weight-400: 400;
  --weight-600: 600;
  --weight-700: 700;
}

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--clr-stone-100);
  min-height: 100vh;
  padding: 100px;
}

.container {
  display: flex;
  flex-direction: column;
  background-color: var(--clr-white);
  width: 40%;
  max-width: 700px;
  min-width: 400px;
  border-radius: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  width: 100%;
  padding: 25px;
}

img {
  border-radius: 10px;
  width: 100%;
}

h1 {
  margin: 15px 0;
  font-size: 27px;
  font-family: var(--font-young-serif);
  font-weight: var(--weight-400);
  color: var(--clr-stone-900);
}

header p {
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  color: var(--clr-stone-600);
}

main {
  padding: 40px;
  padding-top: 0;
}

.preparation-time {
  background-color: var(--clr-rose-50);
  padding: 20px;
  font-family: var(--font-outfit);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.preparation-time h2 {
  font-size: 15px;
  font-weight: var(--weight-700);
  color: var(--clr-rose-800);
  margin-bottom: 5px;
}

.preparation-time ul {
  margin-left: 20px;
  font-size: 10px;
  line-height: 20px;
  color: var(--clr-stone-600);
  list-style-position: outside;
  font-size: var(--font-size);
}

.preparation-time ul li::marker {
  color: var(--clr-rose-800);
  font-size: 10px;
}

.preparation-time ul li {
  padding-left: 8px;
}

.ingredients h2 {
  margin: 15px 0;
  font-family: var(--font-young-serif);
  color: var(--clr-brown-800);
  font-weight: var(--weight-400);
}

.ingredients ul {
  list-style-position: outside;
  line-height: 20px;
  color: var(--clr-stone-600);
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  padding-left: 25px;
  margin-bottom: 20px;
}

hr {
}

.ingredients ul li::marker {
  color: var(--clr-brown-800);
  font-size: 10px;
}

.ingredients ul li {
  padding-left: 8px;
}

.instructions h2 {
  font-family: var(--font-young-serif);
  font-weight: var(--weight-400);
  color: var(--clr-brown-800);
  margin: 15px 0;
}

.instructions ol {
  list-style-position: outside;
  padding-left: 25px;
  line-height: 20px;
  margin-bottom: 20px;
}

.instructions ol li::marker {
  color: var(--clr-brown-800);
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  font-weight: var(--weight-700);
}

.instructions ol li {
  padding-left: 17px;
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  color: var(--clr-stone-600);
}

.instructions ol li b {
  font-weight: var(--weight-700);
  color: var(--clr-stone-600);
}

.natrition h2 {
  color: var(--clr-brown-800);
  font-family: var(--font-young-serif);
  font-weight: var(--weight-400);
  margin: 15px 0;
}

.natrition p {
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  color: var(--clr-stone-600);
  font-weight: var(--weight-400);
}

.info {
  line-height: 40px;
  font-family: var(--font-outfit);
  font-size: var(--font-size);
  color: var(--clr-stone-600);
}

.info div span {
  padding: 0 30px;
  width: 50%;
  display: block;
  float: left;
}

.balance {
  color: var(--clr-brown-800);
  font-weight: var(--weight-700);
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 30px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
