:root {
  color-scheme: dark;
  --ink: #f7f7f1;
  --ground: #0d1411;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 35%, #1e2b25 0, var(--ground) 55%, #080c0a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mark-page {
  width: min(780px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(22px, 5vh, 44px);
  padding: 36px 0;
}

.tree-mark {
  width: min(72vw, 420px);
  height: auto;
  filter: drop-shadow(0 26px 50px rgb(0 0 0 / 0.38));
}

.tree-mark path {
  fill: var(--ink);
}

h1 {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 7vw, 4.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .mark-page {
    width: min(100% - 28px, 560px);
  }

  .tree-mark {
    width: min(86vw, 360px);
  }
}
