:root {
  --bg-core: #2b1b52;
  --bg-mid: #150e2b;
  --bg-edge: #050310;
  --fg: #ffe9a8;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: radial-gradient(ellipse 120% 100% at 50% 45%,
              var(--bg-core) 0%, var(--bg-mid) 45%, var(--bg-edge) 100%);
  color: var(--fg);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

.hero {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.name {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 6rem);
  letter-spacing: .16em;
  text-align: center;
  text-shadow: 0 0 26px rgba(255, 196, 64, .75), 0 0 70px rgba(255, 150, 20, .45);

  /* the name is decoration, not content to lift: no selecting, dragging or hit-testing */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

::selection { background: transparent; }
