* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@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 {
  --White: hsl(0, 0%, 100%);
  --Stone: hsl(30, 54%, 90%);
  --Stone1: hsl(30, 18%, 87%);
  --Stone6: hsl(30, 10%, 34%);
  --Stone9: hsl(24, 5%, 18%);
  --Brown8: hsl(14, 45%, 36%);
  --Rose: hsl(332, 51%, 32%);
  --Rose: hsl(330, 100%, 98%);
}
body {
  font-size: 16px;
  background-color: var(--Stone);
  color: var(--Stone6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180vh;
}
.container {
  max-width: 90%;
  width: 690px;
  background-color: var(--White);
  border-radius: 10px;
  font-family: outfit;
}
li::marker {
  color: var(--Brown8);
}
.bold {
  font-weight: bold;
}
.color {
  color: var(--Brown8);
  font-weight: bold;
}
.flexCol {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

section.intro > .image {
  padding: 24px 24px 0 24px;
  width: 100%;
}
.image > img {
  width: 100%;
  border-radius: 5px;
}
.txt {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.txt h1 {
  font-family: young;
  color: var(--Stone9);
  font-size: 36px;
  font-weight: 400;
}
.time {
  padding: 0 24px;
  margin: 0 20px;
  background-color: var(--Rose);
  border-radius: 10px;
}
.time ul {
  padding-left: 22px;
}
.ingdiv {
  padding: 24px;
  margin: 0 20px;
}

.ingdiv h2 {
  font-family: young;
  font-size: 22px;
  color: var(--Brown8);
}
section.inst {
  padding: 24px;
  margin: 0 20px;
  border-bottom: 1px solid var(--Stone6);
  border-top: 1px solid var(--Stone6);
}
section.inst h2 {
  font-family: young;
  font-size: 22px;
  color: var(--Brown8);
}

section.nat {
  padding: 24px;
  border-bottom: 1px solid var(--Stone6);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

section.nat > h2 {
  font-family: young;
  font-size: 22px;
  color: var(--Brown8);
}

section.nat table tr td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
}
@media screen and (max-width: 375px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
  section.intro > .image {
    padding: 0;
    width: 100%;
  }
  .image > img {
    border-radius: 0px;
  }
  .txt h1 {
    font-size: 30px;
  }
}
