
:root {
  --bg: #000000;
  --text: #ffffff;
  --text-hover: rgba(255, 255, 255, 0.75);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.aprux-link {
  color: var(--text);
  text-decoration: none;
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1;
  transition: opacity 160ms ease;
}

.aprux-link:hover {
  opacity: 0.75;
}

.aprux-link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 10px;
}
