:root {
  --bg:#0b0f14;
  --text:#e6edf3;
  --accent:#7c3aed;
}

html,body {
  margin:0;
  height:100%;
  display:grid;
  place-items:center;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui;
  text-align:center;
}

a {
  color:var(--accent);
  text-decoration:none;
}

.btn {
  padding:.6rem 1.2rem;
  border-radius:6px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
}

.footer-note {
  position:fixed;
  bottom:12px;
  width:100%;
  font-size:.8rem;
  opacity:.6;
}
