/*! concrete.css v2.1.1 | MIT License | github.com/louismerlin/concrete.css */
/* see /concrete.css for commented full version */
:root {
  --fg: #111;
  --bg: #fff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #fff;
    --bg: #111;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.8rem !important
  }

  header {
    padding: 16rem 0 !important;
    font-size: 1.1em !important;
  }
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
  text-decoration-thickness: .2rem;
}

body {
  font-size: 2rem;
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  font-family: Helvetica, Arial, sans-serif;
}

a {
  color: #5863ff;
}

a:visited {
  color: #6532b3;
}

::selection,
a:focus,
a:hover {
  background-color: blue;
  color: #fff;
}

a:visited:focus,
a:visited:hover {
  background-color: #432073;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  margin: auto;
  max-width: 66rem;
  padding: 0 1rem;
  width: 100%;
}

header {
  padding: 16rem 0;
  font-size: 1.2em;
}

footer {
  text-align: center;
}

section {
  padding: 4rem 0;
}

ul {
  list-style: square;
}

fieldset {
  border: .2rem solid var(--fg);
}

label,
legend {
  display: block;
  font-weight: bold;
  margin-bottom: .8rem;
}

table {
  width: 100%;
  border-spacing: 0;
}

td,
th {
  padding: .8rem;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

th {
  border-bottom: .2rem solid var(--fg);
  text-align: left;
}

td {
  border-bottom: .1rem solid var(--fg);
}

blockquote,
pre {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.6rem;
  border-left: .2rem solid var(--fg);
  overflow-y: hidden;
}

pre {
  border: 0.1rem dotted var(--fg);
  border-left: 0.2rem solid var(--fg);
}

pre>code {
  white-space: pre;
  display: block;
  font-size: 1.6rem;
}

progress {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  height: 1rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  border: .2rem solid var(--fg);
  border-radius: 0;
}

hr {
  border: .1rem solid var(--fg);
}

/* email obfuscation */
span.obfs sup,
span.obfs b {
  display: none;
  white-space: nowrap;
  line-height: 0;
}

span.obfs strong {
  font-weight: normal;
}

span.obfs strong:before,
span.obfs strong:after {
  content: "";
  display: inline;
}
