: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%);
}

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

body {
  background-color: var(--clr-stone-100);
  font-size: 14px;
  line-height: 1.5;
  height: 100vh;
  margin: 0;
  color: var(--clr-stone-600);
  font-family: 'Outfit', sans-serif;
  padding: 1.5rem;
  font-size: 13px;
}

h1 {
  font-family: 'Young Serif', sans-serif;
  line-height: 1;
  font-weight: 500;
  color: var(--clr-stone-900);
}

p,
section {
  margin-top: 1.5rem;
}

.preparation {
  padding: 1rem;
  background-color: var(--clr-rose-50);
}

.preparation li::before {
  color: var(--clr-rose-800);
}

main {
  background-color: var(--clr-white);
  box-shadow: 1px 4px 12px rgb(78 73 73 / 62%);
  padding: 1.6em;
  max-width: 1200px;
  margin: 0 auto;
}

li {
  display: flex;
  align-items: center;
  gap: 1em;
}

h3 {
  color: var(--clr-rose-800);
}

h2 {
  color: var(--clr-brown-800);
}

h3,
h2 {
  margin-bottom: 0.3em;
}

.instructions ol {
  counter-reset: my-counter;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.instructions li {
  counter-increment: my-counter;
  align-items: flex-start;
}
.instructions li::before {
  color: var(--clr-brown-800);
  content: counter(my-counter) '.';
  font-size: inherit;
}

li::before {
  content: '•';
  color: var(--clr-brown-800);
  font-size: 1.5em;
  padding-left: 4px;
}

header {
  margin: -1.6em;
  margin-bottom: 1.6em;
}

article {
  /* padding: 1rem; */
}

figure img {
  max-width: 100%;
  height: auto;
}

hr {
  margin-top: 1.5rem;
  border-color: hsla(30, 18%, 87%, 0.5);
}

table {
  width: 100%;
}
tr:not(:last-child) td {
  border-bottom: 1px solid hsla(30, 18%, 87%);
  padding: 0.75em 0;
}
table b {
  color: var(--clr-brown-800);
}

@media (min-width: 376px) {
  header {
    margin: 0;
    margin-bottom: 1em;
    border-radius: 20px;
  }
  main {
    border-radius: 20px;
    padding: 1.6em;
  }
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8rem;
  }
  img {
    border-radius: 20px;
  }
}

@media screen and (min-width: 766px) {
  header {
    margin-bottom: 1.6em;
  }
  main {
    padding: 2.6em;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 2.5rem;
  }
}
