:root {
    --bg: #0f1115;
    --fg: #e6e6e6;
    --muted: #a0a0a0;
    --accent: #4da3ff;

    --max-width: 900px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.site-header {
    border-bottom: 1px solid #222;
}

.subtitle {
    color: var(--muted);
}

.section {
    border-bottom: 1px solid #222;
}

.section h2 {
    margin-top: 0;
}

.project {
    margin-bottom: 2rem;
}

.site-footer {
    text-align: center;
    color: var(--muted);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  display: inline-block;
}

div.nav-bar {
  text-align: center;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}
