@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/fonts/newsreader-regular.ttf") format("truetype");
  font-display: swap;
}
:root {
  color-scheme: light;
  font-family: Manrope, Arial, sans-serif;
  background: #f7f6f2;
  color: #272a27;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
}
main {
  width: min(760px, calc(100% - 40px));
  margin: auto;
  padding: 48px 0 80px;
}
a {
  color: #a84c2b;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 2px solid #bd5935;
  outline-offset: 5px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #272a27;
  text-decoration: none;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -1px;
}
.mark {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #deded3;
  border-radius: 6px;
  color: #bd5935;
  font-weight: 400;
}
.eyebrow {
  margin-top: 65px;
  color: #727a66;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 700;
}
h1 {
  margin: 18px 0 20px;
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: clamp(43px, 7vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
}
h2 {
  margin: 36px 0 12px;
  font-size: 17px;
  font-weight: 700;
}
p,
li {
  color: #626a5b;
  line-height: 1.85;
  font-size: 14px;
}
.notice {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 2px solid #bd5935;
  background: #eeeade;
  color: #525a49;
  font-size: 13px;
  line-height: 1.8;
}
.meta {
  color: #78816e;
  font-size: 11px;
}
footer {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid #dfe2d5;
  font-size: 12px;
}
@media (max-width: 500px) {
  main {
    padding-top: 30px;
  }
  .eyebrow {
    margin-top: 45px;
  }
  p,
  li {
    font-size: 13px;
  }
  .notice {
    padding: 17px;
  }
}
