/*
Theme Name: JVL Sharp
Theme URI: https://joshuavanleuven.com
Author: Joshua Van Leuven
Description: Sharp authority. High contrast. Declarative structure.
Version: 1.1.0
*/

:root {
  --ink: #0b0d10;
  --paper: #f8f9fb;
  --line: rgba(0,0,0,.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f4f8;
    --paper: #0b0d10;
    --line: rgba(255,255,255,.14);
  }
}

body {
  background: var(--paper);
  color: var(--ink);
}

a { color: inherit; text-decoration-thickness: 1px; }
a:hover { text-decoration: none; }

hr { border: none; border-top: 1px solid var(--line); margin: 3rem 0; }

footer { border-top: 1px solid var(--line); }

footer .pi {
  opacity: .35;
  font-size: .8rem;
  margin-left: .25rem;
}
footer .pi:hover { opacity: .7; }
