:root {
  --background: #f4f3ee;
  --text: #191917;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding:
    clamp(6rem, 18vh, 10rem)
    clamp(1.75rem, 7vw, 6rem);
}

.entry {
  width: min(100%, 16rem);
}

h1 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
  margin-top: 3rem;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.18rem;
}

@media (max-width: 640px) {
  .page {
    padding: 4rem 2rem;
  }

  .entry {
    width: 100%;
  }
}
