
:root{
  --fg: #000;
  --muted: #666;
  --bg: #fff;
  --maxw: 860px;
}

*{box-sizing:border-box}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--fg);
  background:var(--bg);
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding: 96px 24px 0;
  text-align:center;
  position:relative;
  z-index:1;
}

h1{
  margin:0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height:1.12;
  font-size: clamp(28px, 6vw, 56px);
}

.lead{
  margin:0;
  font-size: clamp(14px, 2.2vw, 18px);
  color:var(--muted);
}

.sub{
  margin:8px 0 0;
  font-size: clamp(13px, 2vw, 16px);
  color:var(--muted);
}

.map{
  position:fixed;
  inset:auto 0 0 0; /* stick to bottom */
  width:100%;
  height:auto;
  opacity:.9; /* close to the screenshot look */
  pointer-events:none;
  user-select:none;
  z-index:0;
}
