
@import url('https://cdn.jsdelivr.net/gh/source-foundry/Hack@latest/build/web/hack.css');

:root {
  --bg: #050606;
  --fg: #e6e6e6;
  --accent: #00ff41; /* Matrix green */
  --muted: #999999;
  --radius: 6px;
}

/* Page layout */

body {
  font-family: "Hack", ui-monospace, monospace;
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.wrap {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

/* Typography */

h1 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent);
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}


.portrait {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1.5rem auto 2rem auto;
  display: block;
  border: 2px solid var(--accent);
}

/* Links */

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

a {
  padding: 0.9rem 1rem;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: 0.15s ease;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Hover + focus states */

a:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

a:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}
