@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");

:root {
  --bg: #0f1316;
  --ink: #f2eee6;
  --primary-color: #39ff14;
  --accent: var(--primary-color);
  --accent-soft: rgba(57, 255, 20, 0.18);
  --muted: rgba(242, 238, 230, 0.7);
  --snap: 100vh;
  --card-width: 360px;
  --title-font: "Orbitron", sans-serif;
  --body-font: "Orbitron", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  overflow-y: hidden;
  overflow-x: hidden;
  letter-spacing: 0.03em;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2 {
  font-family: var(--title-font);
  letter-spacing: 0.03em;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  line-height: 1.25;
  margin: 0 0 0.35em;
}

p {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

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

.centered {
  text-align: center;
}
