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

/* Colors */

body {
  color: rgb(10, 10, 10);
  background-color: rgb(220, 220, 220);
}
a {
  text-decoration: underline;
  text-decoration-color: rgb(180, 180, 180);
}
code {
  color: rgb(50, 50, 50);
  background-color: rgb(230, 230, 230);
  border-color: rgb(150, 150, 150);
  text-decoration: inherit;
  text-decoration-color: inherit;
}

/* Fonts */

body {
  font-family: "Libre Franklin", "Franklin Gothic", Verdana, sans-serif;
  font-size: 1.1em;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-weight: 600;
}
h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.2em;
}
h4 {
  font-size: 1.05em;
}
code {
  font-family: monospace;
}

/* Layout */

body {
  margin: 0 auto;
  padding: 0.8em;
  max-width: 45em;
}
h1 {
  line-height: 1.3em;
}
h2 {
  margin-bottom: 0.5em;
}
h3 {
  margin-bottom: 0.25em;
}
p {
  margin: 1em 0;
}
td {
  padding: 0 5px;
  word-break: break-all;
}
.label {
  text-align: right;
  white-space: nowrap;
}
code {
  display: inline-block;
  padding: 1px 8px;
  border-width: 1px;
  border-style: dashed;
  border-radius: 4px;
}
