/*! normalize.css v2.1.3 | MIT License | git.io/normalize */

/* Base styles with denser UI */
html {
  font-family: "Helvetica Neue", Helvetica, Arial, "Liberation Sans",
    "Nimbus Sans L", "Noto Sans", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  font-size: 14px;
  color: #000;
}

body {
  margin: 0 auto;
  padding: 1rem;
  max-width: 95ch;
  background: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
  color: #000;
}

h2 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #000;
  color: #000;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #000;
}

h4 {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  color: #000;
}

h5,
h6 {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  margin-bottom: 0.4rem;
  color: #000;
}

/* Text elements */
p {
  margin: 0.25rem 0 0.75rem 0;
  color: #000;
}

a {
  color: #4b7be5 !important;
  text-decoration: none !important;
  transition: color 0.1s ease;
}

/* Lists */
ul,
ol {
  padding-left: 1.25rem;
  margin: 0.25rem 0 0.75rem 0;
  color: #000;
}

li {
  margin: 0.2rem 0;
}

/* Code */
code,
pre {
  font-family: "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  background: #f8fafc;
  border-radius: 0.25rem;
  color: #1a202c;
  border: 1px solid #e2e8f0;
}

code {
  padding: 0.2em 0.4em;
  margin: 0.2em 0.2em;
  font-weight: 500;
  background: #edf2f7;
  display: inline-block;
}

pre {
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
}

th,
td {
  padding: 0.4rem;
  border: 1px solid #e2e8f0;
}

th {
  background: #f7fafc;
  font-weight: 600;
  text-align: left;
}

/* Blockquotes */
blockquote {
  margin: 0.75rem 0;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid #e2e8f0;
  background: #f7fafc;
  color: #000;
}

/* Horizontal rule */
hr {
  margin: 1rem 0;
  border: 0;
  height: 1px;
  background: #e2e8f0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

/* Forms */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 95%;
  margin: 0;
  padding: 0.4rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  background: #fff;
  color: #000;
  transition: all 0.1s ease;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #4299e1;
}

/* Definition lists */
dl {
  display: flex;
  margin: 0;
}

dl dt,
dl dd:not(:last-child) {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 1;
}

dd {
  margin-inline-start: 0;
}