:root {
  --bg: #000223;
  --fg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-style: italic;
}

.topnav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 40px;
}

.nav-spacer {
  flex: 1;
}

.nav-link {
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 8vh 20px 0;
}

.hero h1 {
  color: var(--fg);
  font-size: 2.25rem;
  font-weight: normal;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.info-link {
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.info-link:hover {
  opacity: 1;
  text-decoration: underline;
}
