/* -----------------------------
   Base reset
----------------------------- */
* {
  box-sizing: border-box;
}

/* -----------------------------
   Base document styles
----------------------------- */
body {
  margin: 0;
  background: #121212;
color: #e6e6e6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #d6d6d6;
}

/* -----------------------------
   Layout
----------------------------- */
header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav a {
  margin-right: 1.25rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
}

nav a:hover {
  opacity: 1;
}

main {
  max-width: 42rem;
  padding: 2rem 1rem;
}

/* -----------------------------
   Typography
----------------------------- */
h1,
h2,
h3 {
  font-weight: normal;
  margin-top: 2.5rem;
}

h1 {
  margin-top: 0;
}

p {
  margin: 1.25rem 0;
}

/* -----------------------------
   Articles / posts
----------------------------- */
article {
  margin-bottom: 4rem;
}

/* -----------------------------
   Links
----------------------------- */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:hover {
  opacity: 0.8;
}