@font-face {
  font-family: "Cardo Era";
  src: url("/fonts/cardo-regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cardo Era";
  src: url("/fonts/cardo-italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Era";
  src: url("/fonts/familjen-grotesk.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: #efe2d5;
  background: #150911;
  font-family: "Familjen Era", system-ui, sans-serif;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 100px;
}

.brand {
  color: #d98a94;
  font-size: 13px;
  letter-spacing: 0.6em;
  text-decoration: none;
}

h1 {
  margin: 62px 0 34px;
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(48px, 9vw, 76px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

p {
  margin: 0 0 22px;
  color: #cdbec0;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: #e0a0a9;
}

a:focus-visible {
  outline: 2px solid #efe2d5;
  outline-offset: 4px;
}
