@font-face {
  font-family: 'Courier Prime';
  src: url('./CourierPrime.ttf') format('truetype');
}

:root {
/*  --bg:   #182A35; */
  --bg:   #000000;
  --text: #d0d0d0;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Courier Prime', Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
  margin-bottom: 1rem;
}

h1.logo {
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.25rem; }

nav {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2;
}

a, a:link, a:visited, a:hover, a:active {
  color: var(--text);
}

nav a[aria-current="page"] {
  font-weight: bold;
}

p {
  margin: 1rem auto;
  max-width: 700px;
}

ul, ol {
  max-width: 700px;
  margin: 1rem auto;
  padding-left: 1.5rem;
}

li {
  margin: 0.5rem 0;
}

hr {
  border: none;
  border-top: 1px solid var(--text);
  margin: 2rem auto;
  max-width: 700px;
  opacity: 0.3;
}

footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.8rem;
  opacity: 0.4;
}

::selection {
  background: var(--text);
  color: var(--bg);
}
