/* from: https://tigerstyle.dev/styles.css?v=0.1-dev    
   https://tigerstyle.dev   */



:root {
  --font-family: 'Liberation Mono', monospace;
  --line-height: 1.4rem;
  --border-thickness: 2px;
  --text-color: rgb(2 6 23);
  --text-color-alt: #666;
  --background-color: #fff;
  --background-color-alt: #eee;

  --font-size-base: 15x;
  --font-size-small: 13px;
  --font-size-large: 34px;
  --font-size-h2: 25px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;

  --spacing-small: 5px;
  --spacing-medium: 10px;
  --spacing-large: 20px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;

  --container-max-width: 658px;
}

/* Fonts */
@font-face {
  font-family: 'Liberation Mono';
  src: url('./fonts/LiberationMono.woff2') format('woff2'),
    url('./fonts/LiberationMono.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Liberation Mono';
  src: url('./fonts/LiberationMono-Bold.woff2') format('woff2'),
    url('./fonts/LiberationMono-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Base styles */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  line-height: var(--line-height);
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  margin: var(--spacing-large) auto;
  padding: 0 var(--spacing-xl);
}

/* Typography */
.title {
  text-align: center;
  font-weight: bold;
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-medium);
}

.version {
  text-align: center;
  color: var(--text-color-alt);
  font-size: 0.9em;
  margin-top: var(--spacing-small);
}

h2,
h3,
h4 {
  font-weight: bold;
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: calc(var(--line-height) * 2) 0 0;
  line-height: var(--line-height);
}

h1 {
  font-size: 2rem;
  line-height: calc(2 * var(--line-height));
  margin-bottom: calc(var(--line-height) * 2);
}


/* Content elements */
p,
blockquote,
ol,
ul {
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-large);
}

pre {
  font-size: var(--font-size-small);
  padding: 2px 4px;
  overflow-x: auto;
}

blockquote {
  margin: var(--spacing-large) 0;
  padding-left: var(--spacing-medium);
  border-left: var(--border-thickness) solid var(--text-color);
  font-style: italic;
}

/* Lists */
ol,
ul {
  margin-left: 0;
  padding-left: var(--spacing-xl);
}

ul.no-bullets {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ol.summary,
ol.summary ol {
  counter-reset: section;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: var(--spacing-large);
}

ol.summary li,
ol.summary ol li {
  display: block;
}

ol.summary li::before,
ol.summary ol li::before {
  counter-increment: section;
  content: counters(section, ".") ". ";
  padding-right: var(--spacing-small);
}

ol.summary ol li::before {
  content: counters(section, ".") " ";
}

/* Utility classes */
.supplementary {
  font-size: 0.9em;
  color: var(--text-color-alt);
  margin-top: var(--spacing-medium);
  border-top: 1px solid var(--background-color-alt);
  padding-top: var(--spacing-medium);
}

hr.section-divider {
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
  border: 0;
  border-top: 1px solid var(--text-color-alt);
}

/* Links */
a {
  text-decoration: none;
  color: #0014EE;
}

a:hover {
  text-decoration: underline;
}

/* Media queries */
@media (min-width: 768px) {
  .container {
    max-width: var(--container-max-width);
    margin: var(--spacing-xxl) auto;
    padding: 0 var(--spacing-large);
  }
}