:root {
  --White: #ffffff;

  --Stone100: hsl(30, 54%, 90%);
  --Stone150: hsl(30, 18%, 87%);
  --Stone600: hsl(30, 10%, 34%);
  --Stone900: hsl(24, 5%, 18%);

  --Brown800: hsl(14, 45%, 36%);

  --Rose800: hsl(332, 51%, 32%);
  --Rose50: hsl(330, 100%, 98%);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Young serif";
  src: url(./assets/fonts/young-serif/YoungSerif-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url(./assets/fonts/outfit/Outfit-VariableFont_wght.ttf)
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Outfit" sans-serif;
}

.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
}
section {
  margin: 1.4rem 0;
}
ul li::marker,
ol li::marker {
  color: var(--Brown800);
}

header {
  padding-top: 3rem;
}
header img {
  border-radius: 15px;
}
h1 {
  color: var(--Stone900);
  margin-bottom: 0.6rem;
  font-size: 30px;
  font-family: "Outfit" sans-serif;
}

.preparation {
  padding: 2rem 1.6rem;
}
.preparation h4 {
  color: var(--Rose800);
  margin-bottom: 0.4rem;
}

li {
  padding: 0.4rem 0;
}

ol strong {
  color: var(--Stone600);
  font-family: "Young serif", sans-serif;
}
h2 {
  color: var(--Brown800);
  margin-bottom: 0.4rem;
}
table {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
}

th,
td {
  text-align: left;
  padding: 5px;
}
th:last-child,
td:last-child {
  color: var(--Brown800);
  font-family: "Young serif", sans-serif;
}
.attribution a {
  text-decoration: none;
}

@media (max-width: 500px) {
  .container {
    padding: 0rem 1.5rem;
  }
  header {
    padding: 0 !important;
  }
}
