/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: MuseoSans; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.prose {
  color: #f3f4f6;
  max-width: 65ch;
}

.prose [class~="lead"] {
  color: #4b5563;
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose a {
  color: #fef3c7;
  text-decoration: underline;
  font-weight: 500;
}

.prose a:hover {
  color: #fde68a;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose ol[type="A"] {
  --list-counter-style: upper-alpha;
}

.prose ol[type="a"] {
  --list-counter-style: lower-alpha;
}

.prose ol[type="I"] {
  --list-counter-style: upper-roman;
}

.prose ol[type="i"] {
  --list-counter-style: lower-roman;
}

.prose ol[type="1"] {
  --list-counter-style: decimal;
}

.prose ol > li {
  position: relative;
  padding-left: 1.75em;
}

.prose ol > li::before {
  content: counter(list-item, var(--list-counter-style, decimal)) ".";
  position: absolute;
  font-weight: 400;
  color: #9ca3af;
  left: 0;
}

.prose ul > li {
  position: relative;
  padding-left: 1.75em;
}

.prose ul > li::before {
  content: "";
  position: absolute;
  background-color: #9ca3af;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
  top: calc(0.875em - 0.1875em);
  left: 0.25em;
}

.prose hr {
  border-color: #e5e7eb;
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose blockquote {
  font-weight: 500;
  font-style: italic;
  color: #f3f4f6;
  border-left-width: 0.0rem;
  border-left-color: #e5e7eb;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 0em;
  margin-bottom: 1.6em;
  padding-left: 1em;
  font-size: 150%;
  font-variant: small-caps;
  margin-left: 1em;
}

.prose blockquote p:first-of-type::before {
  content: "";
}

.prose blockquote p:last-of-type::after {
  content: close-quote;
}

.prose h1 {
  color: #fff;
  font-weight: 700;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose h2 {
  color: #fff;
  font-weight: 500;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose h4 {
  color: #f9fafb;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose figure figcaption {
  color: #6b7280;
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose code {
  color: #fff;
  font-weight: 700;
  font-size: 0.875em;
}

.prose code::before {
  content: "";
}

.prose code::after {
  content: "";
}

.prose a code {
  color: #fff;
}

.prose pre {
  color: #e5e7eb;
  background-color: #1f2937;
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose pre code {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose pre code::before {
  content: none;
}

.prose pre code::after {
  content: none;
}

.prose table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose thead {
  color: #111827;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-color: #d1d5db;
}

.prose thead th {
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose tbody tr {
  border-bottom-width: 1px;
  border-bottom-color: #e5e7eb;
}

.prose tbody tr:last-child {
  border-bottom-width: 0;
}

.prose tbody td {
  vertical-align: top;
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose {
  font-size: 1rem;
  line-height: 1.75;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose img {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose video {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figure {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figure > * {
  margin-top: 0;
  margin-bottom: 0;
}

.prose h2 code {
  font-size: 0.875em;
}

.prose h3 code {
  font-size: 0.9em;
}

.prose ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose > ul > li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose > ul > li > *:first-child {
  margin-top: 1.25em;
}

.prose > ul > li > *:last-child {
  margin-bottom: 1.25em;
}

.prose > ol > li > *:first-child {
  margin-top: 1.25em;
}

.prose > ol > li > *:last-child {
  margin-bottom: 1.25em;
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose hr + * {
  margin-top: 0;
}

.prose h2 + * {
  margin-top: 0;
}

.prose h3 + * {
  margin-top: 0;
}

.prose h4 + * {
  margin-top: 0;
}

.prose thead th:first-child {
  padding-left: 0;
}

.prose thead th:last-child {
  padding-right: 0;
}

.prose tbody td:first-child {
  padding-left: 0;
}

.prose tbody td:last-child {
  padding-right: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose blockquote:before {
  font-size: 4.5em;
  margin-top: -0.4em;
  margin-left: -0.6em;
  color: #919da7;
  position: absolute;
  font-family: Georgia, "Times New Roman", Times, serif;
  content: "\201C";
  font-weight: bold;
  font-style: normal;
}

.prose blockquote p:first-of-type::after {
  content: "";
}

.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7142857;
}

.prose-sm p {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}

.prose-sm [class~="lead"] {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

.prose-sm blockquote {
  margin-top: 0em;
  margin-bottom: 1.3333333em;
  padding-left: 1.1111111em;
  margin-left: 0.8em;
}

.prose-sm h1 {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

.prose-sm h2 {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.prose-sm h3 {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}

.prose-sm h4 {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}

.prose-sm img {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm video {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm figure {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm figure > * {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-sm figure figcaption {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}

.prose-sm code {
  font-size: 0.8571429em;
}

.prose-sm h2 code {
  font-size: 0.9em;
}

.prose-sm h3 code {
  font-size: 0.8888889em;
}

.prose-sm pre {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}

.prose-sm ol {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}

.prose-sm ul {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}

.prose-sm li {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}

.prose-sm ol > li {
  padding-left: 1.5714286em;
}

.prose-sm ol > li::before {
  left: 0;
}

.prose-sm ul > li {
  padding-left: 1.5714286em;
}

.prose-sm ul > li::before {
  height: 0.3571429em;
  width: 0.3571429em;
  top: calc(0.8571429em - 0.1785714em);
  left: 0.2142857em;
}

.prose-sm > ul > li p {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}

.prose-sm > ul > li > *:first-child {
  margin-top: 1.1428571em;
}

.prose-sm > ul > li > *:last-child {
  margin-bottom: 1.1428571em;
}

.prose-sm > ol > li > *:first-child {
  margin-top: 1.1428571em;
}

.prose-sm > ol > li > *:last-child {
  margin-bottom: 1.1428571em;
}

.prose-sm ul ul, .prose-sm ul ol, .prose-sm ol ul, .prose-sm ol ol {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}

.prose-sm hr {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}

.prose-sm hr + * {
  margin-top: 0;
}

.prose-sm h2 + * {
  margin-top: 0;
}

.prose-sm h3 + * {
  margin-top: 0;
}

.prose-sm h4 + * {
  margin-top: 0;
}

.prose-sm table {
  font-size: 0.8571429em;
  line-height: 1.5;
}

.prose-sm thead th {
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}

.prose-sm thead th:first-child {
  padding-left: 0;
}

.prose-sm thead th:last-child {
  padding-right: 0;
}

.prose-sm tbody td {
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}

.prose-sm tbody td:first-child {
  padding-left: 0;
}

.prose-sm tbody td:last-child {
  padding-right: 0;
}

.prose-sm > :first-child {
  margin-top: 0;
}

.prose-sm > :last-child {
  margin-bottom: 0;
}

.prose-sm blockquote:before {
  font-size: 4.5em;
  margin-top: -0.4em;
  margin-left: -0.6em;
}

.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.font-masthead {
  font-family: Lucida, "Lucida Sans", "Lucida Grande", MuseoSlab500, "Courier New", Courier, mono;
}

.font-atmark {
  font-family: Georgia, "Times New Roman", Times, serif;
}

.font-bold {
  font-weight: 700;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.-ml-4 {
  margin-left: -1rem;
}

.-mt-8 {
  margin-top: -2rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-prose {
  max-width: 65ch;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pt-0 {
  padding-top: 0px;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pt-0\.5 {
  padding-top: 0.125rem;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

* {
  --tw-shadow: 0 0 #0000;
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(14, 165, 233, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.text-center {
  text-align: center;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.no-underline {
  text-decoration: none;
}

.invisible {
  visibility: hidden;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.fgoto {
  /* don't use this with <sup>... one or the other.*/
  font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;
  top: -0.3em; vertical-align: super;
}

/* I mostly use this for math like exponents and stuff */

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;
}

sup { top: -0.3em; vertical-align: super;
}

sub { bottom: -0.25em; vertical-align: sub;
}

/* give strong a bit more oomph */

strong {
  text-shadow: #1F2937 0 2px 2px;
}

/* Footnote  */

.fgoto {
  margin-left: 0.25rem;
  margin-right: 0.125rem;
}

.fgoto:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
}

.fgoto {
  --tw-text-opacity: 1 !important;
  color: rgba(229, 231, 235, var(--tw-text-opacity)) !important;
}

.fgoto:hover {
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.fgoto {
  text-decoration: none !important;
}

/* Footnote return */

.freturn {
  margin-left: 0.5rem;
}

.freturn:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
}

.freturn {
  --tw-text-opacity: 1 !important;
  color: rgba(229, 231, 235, var(--tw-text-opacity)) !important;
}

.freturn:hover {
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.freturn {
  text-decoration: none !important;
}

.block-link {
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.block-link:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.block-link {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.block-link:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.block-link {
  text-decoration: none;
}

.quiet-link:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
}

.quiet-link {
  --tw-text-opacity: 1 !important;
  color: rgba(229, 231, 235, var(--tw-text-opacity)) !important;
}

.quiet-link:hover {
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.quiet-link {
  text-decoration: none !important;
}

.post-title {
  text-shadow: #111827 0px 3px 3px;
}

.post-title:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.post-title {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.post-title:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.post-title {
  line-height: 1.25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .post-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .post-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4rem;
  }
}

.post-title {
  text-decoration: none !important;
  /* debug */
  /* min width 768px */
  /* @apply md:text-red-500; */
  /* min width 1024px */
  /* @apply lg:text-blue-500; */
  /* min width 1280px */
  /* @apply xl:text-green-500; */
}

.post-date:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.post-date {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.post-date:hover {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.post-date {
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 768px) {
  .post-date {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .post-date {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .post-date {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

hr {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  border-top-width: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #313d47;
}

/* Works on Firefox */

pre  {
  scrollbar-color: #6B7280 #1f2937;
}

/* Works on Chrome, Edge, and Safari */

pre::-webkit-scrollbar {
  width: 12px;
}

pre::-webkit-scrollbar-track {
  background: #1f2937;
}

pre::-webkit-scrollbar-thumb {
  background-color: #6B7280;
  border-radius: 20px;
  border: 3px solid #1f2937;
}

/* just for our subtitles */

@font-face {
  font-family: 'MuseoSlab500';

  src: url('Museo_Slab_500-webfont.eot');

  src: url('Museo_Slab_500-webfont.eot?iefix') format('eot'),
		 url('Museo_Slab_500-webfont.woff') format('woff'),
		 url('Museo_Slab_500-webfont.ttf') format('truetype'),
		 url('Museo_Slab_500-webfont.svg#Museo_Slab_500') format('svg');

  font-weight: normal;

  font-style: normal;
}

/* normal */

@font-face {
  font-family: 'MuseoSans';

  src: url('MuseoSans_300-webfont.eot');

  src: url('MuseoSans_300-webfont.eot?#iefix') format('embedded-opentype'),
         url('MuseoSans_300-webfont.woff') format('woff'),
         url('MuseoSans_300-webfont.ttf') format('truetype'),
         url('MuseoSans_300-webfont.svg#MuseoSans300Regular') format('svg');

  font-weight: normal;

  font-style: normal;
}

/* italic */

@font-face {
  font-family: 'MuseoSans';

  src: url('MuseoSans_300_Italic-webfont.eot');

  src: url('MuseoSans_300_Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('MuseoSans_300_Italic-webfont.woff') format('woff'),
         url('MuseoSans_300_Italic-webfont.ttf') format('truetype'),
         url('MuseoSans_300_Italic-webfont.svg#MuseoSans300Italic') format('svg');

  font-weight: normal;

  font-style: italic;
}

/* bold */

@font-face {
  font-family: 'MuseoSans';

  src: url('MuseoSans_700-webfont.eot');

  src: url('MuseoSans_700-webfont.eot?#iefix') format('embedded-opentype'),
         url('MuseoSans_700-webfont.woff') format('woff'),
         url('MuseoSans_700-webfont.ttf') format('truetype'),
         url('MuseoSans_700-webfont.svg#MuseoSans700Regular') format('svg');

  font-weight: bold;

  font-style: normal;
}

/* bold italic */

@font-face {
  font-family: 'MuseoSans';

  src: url('MuseoSans_700_Italic-webfont.eot');

  src: url('MuseoSans_700_Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('MuseoSans_700_Italic-webfont.woff') format('woff'),
         url('MuseoSans_700_Italic-webfont.ttf') format('truetype'),
         url('MuseoSans_700_Italic-webfont.svg#MuseoSans700Italic') format('svg');

  font-weight: bold;

  font-style: italic;
}

/*!
* Gist DarkCode ver 0.2.0 
* Copyright (c) 2017 KillerCodes.in
* License: Free to use with this file header ;)
*/

.gist { font-size: 18px
}

.gist-meta, .gist-file, .octotree_toggle, ul.comparison-list > li.title, button.button, a.button, span.button, button.minibutton, a.minibutton, span.minibutton, .clone-url-button > .clone-url-link {  border-color: #383838 !important; border-radius: 0 0 3px 3px ; text-shadow: none !important; color: #b5b5b5 !important
}

.markdown-format pre, .markdown-body pre, .markdown-format .highlight pre, .markdown-body .highlight pre, body.blog pre, #facebox pre, .blob-expanded, .terminal, .copyable-terminal, #notebook .input_area, .blob-code-context, .markdown-format code, body.blog pre > code, .api pre, .api code, .CodeMirror, .highlight {  color: #C5C8C6 !important
}

.gist .blob-code { padding: 1px 10px !important; text-align: left; background: #000; border: 0
}

/* ::selection { background: #24890d; color: #fff; text-shadow: none } */

/* ::-moz-selection { background: #24890d; color: #fff; text-shadow: none } */

.blob-num { padding: 10px 8px 9px; text-align: right; color: #6B6B6B !important; border: 0
}

.blob-code, .blob-code-inner { color: #C5C8C6 !important
}

.pl-c, .pl-c span { color: #969896 !important; font-style: italic !important
}

.pl-c1 { color: #DE935F !important
}

.pl-cce { color: #DE935F !important
}

.pl-cn { color: #DE935F !important
}

.pl-coc { color: #DE935F !important
}

.pl-cos { color: #B5BD68 !important
}

.pl-e { color: #F0C674 !important
}

.pl-ef { color: #F0C674 !important
}

.pl-en { color: #F0C674 !important
}

.pl-enc { color: #DE935F !important
}

.pl-enf { color: #F0C674 !important
}

.pl-enm { color: #F0C674 !important
}

.pl-ens { color: #DE935F !important
}

.pl-ent { color: #B294BB !important
}

.pl-entc { color: #F0C674 !important
}

.pl-enti { color: #F0C674 !important; font-weight: 700 !important
}

.pl-entm { color: #C66 !important
}

.pl-eoa { color: #B294BB !important
}

.pl-eoac { color: #C66 !important
}

.pl-eoac .pl-pde { color: #C66 !important
}

.pl-eoai { color: #B294BB !important
}

.pl-eoai .pl-pde { color: #B294BB !important
}

.pl-eoi { color: #F0C674 !important
}

.pl-k { color: #B294BB !important
}

.pl-ko { color: #B294BB !important
}

.pl-kolp { color: #B294BB !important
}

.pl-kos { color: #DE935F !important
}

.pl-kou { color: #DE935F !important
}

.pl-mai .pl-sf { color: #C66 !important
}

.pl-mb { color: #B5BD68 !important; font-weight: 700 !important
}

.pl-mc { color: #B294BB !important
}

.pl-mh .pl-pdh { color: #DE935F !important
}

.pl-mi { color: #B294BB !important; font-style: italic !important
}

.pl-ml { color: #B5BD68 !important
}

.pl-mm { color: #C66 !important
}

.pl-mp { color: #81A2BE !important
}

.pl-mp1 .pl-sf { color: #81A2BE !important
}

.pl-mq { color: #DE935F !important
}

.pl-mr { color: #B294BB !important
}

.pl-ms { color: #B294BB !important
}

.pl-pdb { color: #B5BD68 !important; font-weight: 700 !important
}

.pl-pdc { color: #969896 !important; font-style: italic !important
}

.pl-pdc1 { color: #DE935F !important
}

.pl-pde { color: #DE935F !important
}

.pl-pdi { color: #B294BB !important; font-style: italic !important
}

.pl-pds { color: #B5BD68 !important
}

.pl-pdv { color: #C66 !important
}

.pl-pse { color: #DE935F !important
}

.pl-pse .pl-s2 { color: #DE935F !important
}

.pl-s { color: #B294BB !important
}

.pl-s1 { color: #B5BD68 !important
}

.pl-s2 { color: #c5c8c6 !important
}

.pl-mp .pl-s3 { color: #B294BB !important
}

.pl-s3 { color: #81a2be !important
}

.pl-sc { color: #c5c8c6 !important
}

.pl-scp { color: #DE935F !important
}

.pl-sf { color: #DAD085 !important
}

.pl-smc { color: #F0C674 !important
}

.pl-smi { color: #c5c8c6 !important
}

.pl-smp { color: #c5c8c6 !important
}

.pl-sok { color: #B294BB !important
}

.pl-sol { color: #B5BD68 !important
}

.pl-som { color: #C66 !important
}

.pl-sr { color: #C66 !important
}

.pl-sra { color: #B294BB !important
}

.pl-src { color: #B294BB !important
}

.pl-sre { color: #B294BB !important
}

.pl-st { color: #B294BB !important
}

.pl-stj { color: #c5c8c6 !important
}

.pl-stp { color: #DE935F !important
}

.pl-sv { color: #DE935F !important
}

.pl-v { color: #DE935F !important
}

.pl-vi { color: #DE935F !important
}

.pl-vo { color: #C66 !important
}

.pl-vpf { color: #DE935F !important
}

.pl-mi1 { color: #8F9D6A !important; background: rgba(0, 64, 0, .5) !important
}

.pl-mdht { color: #8F9D6A !important; background: rgba(0, 64, 0, .5) !important
}

.pl-md { color: #C66 !important; background: rgba(64, 0, 0, .5) !important
}

.pl-mdhf { color: #C66 !important; background: rgba(64, 0, 0, .5) !important
}

.pl-mdr { color: #DE935F !important; font-weight: 400 !important
}

.pl-mdh { color: #C66 !important; font-weight: 400 !important
}

.pl-mdi { color: #C66 !important; font-weight: 400 !important
}

.pl-ib { background-color: #C66 !important
}

.pl-id { background-color: #C66 !important; color: #fff !important
}

.pl-ii { background-color: #C66 !important; color: #fff !important
}

.pl-iu { background-color: #C66 !important
}

.pl-mo { color: #c5c8c6 !important
}

.pl-mri { color: #DE935F !important
}

.pl-ms1 { background-color: #c5c8c6 !important
}

.pl-va { color: #DE935F !important
}

.pl-vpu { color: #DE935F !important
}

.pl-entl { color: #c5c8c6 !important
}

.CodeMirror-gutters { background: #222 !important; border-right: 1px solid #484848 !important
}

.CodeMirror-guttermarker { color: #fff !important
}

.CodeMirror-guttermarker-subtle { color: #aaa !important
}

.CodeMirror-linenumber { color: #aaa !important
}

.CodeMirror-cursor { border-left: 1px solid #fff !important
}

.CodeMirror-activeline-background { background: #27282E !important
}

.CodeMirror-matchingbracket { outline: 1px solid grey !important; color: #fff !important
}

.cm-keyword { color: #f9ee98 !important
}

.cm-atom { color: #FC0 !important
}

.cm-number { color: #ca7841 !important
}

.cm-def { color: #8DA6CE !important
}

.cm-variable-2, span.cm-tag { color: #607392 !important
}

.cm-variable-3, span.cm-def { color: #607392 !important
}

.cm-operator { color: #cda869 !important
}

.cm-comment { color: #777 !important; font-style: italic !important; font-weight: 400 !important
}

.cm-string { color: #8f9d6a !important
}

.cm-string-2 { color: #bd6b18 !important
}

.cm-meta { background-color: #141414 !important; color: #f7f7f7 !important
}

.cm-builtin { color: #cda869 !important
}

.cm-tag { color: #997643 !important
}

.cm-attribute { color: #d6bb6d !important
}

.cm-header { color: #FF6400 !important
}

.cm-hr { color: #AEAEAE !important
}

.cm-link { color: #ad9361 !important; font-style: italic !important; text-decoration: none !important
}

.cm-error { border-bottom: 1px solid red !important
}

#notebook .highlight table { background: #1d1f21 !important; color: #c5c8c6 !important
}

.highlight .hll { background-color: #373b41 !important
}

.highlight .c { color: #969896 !important
}

.highlight .err { color: #c66 !important
}

.highlight .k { color: #b294bb !important
}

.highlight .l { color: #de935f !important
}

.highlight .h, .highlight .n { color: #c5c8c6 !important
}

.highlight .o { color: #8abeb7 !important
}

.highlight .p { color: #c5c8c6 !important
}

.highlight .cm { color: #969896 !important
}

.highlight .cp { color: #969896 !important
}

.highlight .c1 { color: #969896 !important
}

.highlight .cs { color: #969896 !important
}

.highlight .gd { color: #c66 !important
}

.highlight .ge { font-style: italic !important
}

.highlight .gh { color: #c5c8c6 !important; font-weight: 700 !important
}

.highlight .gi { color: #b5bd68 !important
}

.highlight .gp { color: #969896 !important; font-weight: 700 !important
}

.highlight .gs { font-weight: 700 !important
}

.highlight .gu { color: #8abeb7 !important; font-weight: 700 !important
}

.highlight .kc { color: #b294bb !important
}

.highlight .kd { color: #b294bb !important
}

.highlight .kn { color: #8abeb7 !important
}

.highlight .kp { color: #b294bb !important
}

.highlight .kr { color: #b294bb !important
}

.highlight .kt { color: #f0c674 !important
}

.highlight .ld { color: #b5bd68 !important
}

.highlight .m { color: #de935f !important
}

.highlight .s { color: #b5bd68 !important
}

.highlight .na { color: #81a2be !important
}

.highlight .nb { color: #c5c8c6 !important
}

.highlight .nc { color: #f0c674 !important
}

.highlight .no { color: #c66 !important
}

.highlight .nd { color: #8abeb7 !important
}

.highlight .ni { color: #c5c8c6 !important
}

.highlight .ne { color: #c66 !important
}

.highlight .nf { color: #81a2be !important
}

.highlight .nl { color: #c5c8c6 !important
}

.highlight .nn { color: #f0c674 !important
}

.highlight .nx { color: #81a2be !important
}

.highlight .py { color: #c5c8c6 !important
}

.highlight .nt { color: #8abeb7 !important
}

.highlight .nv { color: #c66 !important
}

.highlight .ow { color: #8abeb7 !important
}

.highlight .w { color: #c5c8c6 !important
}

.highlight .mf { color: #de935f !important
}

.highlight .mh { color: #de935f !important
}

.highlight .mi { color: #de935f !important
}

.highlight .mo { color: #de935f !important
}

.highlight .sb { color: #b5bd68 !important
}

.highlight .sc { color: #c5c8c6 !important
}

.highlight .sd { color: #969896 !important
}

.highlight .s2 { color: #b5bd68 !important
}

.highlight .se { color: #de935f !important
}

.highlight .sh { color: #b5bd68 !important
}

.highlight .si { color: #de935f !important
}

.highlight .sx { color: #b5bd68 !important
}

.highlight .sr { color: #b5bd68 !important
}

.highlight .s1 { color: #b5bd68 !important
}

.highlight .ss { color: #b5bd68 !important
}

.highlight .bp { color: #c5c8c6 !important
}

.highlight .vc { color: #c66 !important
}

.highlight .vg { color: #c66 !important
}

.highlight .vi { color: #c66 !important
}

.highlight .il { color: #de935f !important
}

/* customizations */

.gist { font-size: 18px; background-color: #1f2937; border-radius: 0.5rem; border-color: #6B7280;
}

.gist tr { border:0; border-color: #6B7280;
}

.markdown-format pre, .markdown-body pre, .markdown-format .highlight pre, .markdown-body .highlight pre, body.blog pre, #facebox pre, .blob-expanded, .terminal, .copyable-terminal, #notebook .input_area, .blob-code-context, .markdown-format code, body.blog pre > code, .api pre, .api code, .CodeMirror, .highlight {
  background-color: #1f2937 !important;   color: #C5C8C6 !important
}

.gist-meta, .gist-file, .octotree_toggle, ul.comparison-list > li.title, button.button, a.button, span.button, button.minibutton, a.minibutton, span.minibutton, .clone-url-button > .clone-url-link {
  background-color: #1f2937 !important; border-color: #383838 !important; border-radius: 0 0 3px 3px ; text-shadow: none !important; color: #6B7280 !important
}

.gist .gist-file { background-color: #1f2937; border-radius: 0.5rem !important; border-color: #6B7280;
}

.gist .gist-data { border:0 !important; border-color: #6B7280;
}

.gist-data  { margin-top: 8px;
}

.gist-data, .file-box, .file, .Box-body { background-color: #1f2937; border-color: #DC2626;
}

.gist table { background-color: #1f2937; border-radius: 0.5rem;
}

.gist tbody { background-color: #1f2937; border-radius: 0.5rem;
}

.gist .gist-meta a { color:#9CA3AF !important;
}

/* Works on Firefox */

.gist  {
  scrollbar-color: #6B7280 #1f2937;
}

/* Works on Chrome, Edge, and Safari */

.gist ::-webkit-scrollbar {
  width: 12px;
}

.gist ::-webkit-scrollbar-track {
  background: #1f2937;
}

.gist ::-webkit-scrollbar-thumb {
  background-color: #6B7280;
  border-radius: 20px;
  border: 3px solid #1f2937;
}

@media (min-width: 640px) {
  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:visible {
    visibility: visible;
  }

  .sm\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }

  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .sm\:col-span-9 {
    grid-column: span 9 / span 9;
  }
}

@media (min-width: 768px) {
  .md\:prose {
    color: #f3f4f6;
    max-width: 65ch;
  }

  .md\:prose [class~="lead"] {
    color: #4b5563;
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .md\:prose a {
    color: #fef3c7;
    text-decoration: underline;
    font-weight: 500;
  }

  .md\:prose a:hover {
    color: #fde68a;
  }

  .md\:prose strong {
    color: #fff;
    font-weight: 600;
  }

  .md\:prose ol[type="A"] {
    --list-counter-style: upper-alpha;
  }

  .md\:prose ol[type="a"] {
    --list-counter-style: lower-alpha;
  }

  .md\:prose ol[type="I"] {
    --list-counter-style: upper-roman;
  }

  .md\:prose ol[type="i"] {
    --list-counter-style: lower-roman;
  }

  .md\:prose ol[type="1"] {
    --list-counter-style: decimal;
  }

  .md\:prose ol > li {
    position: relative;
    padding-left: 1.75em;
  }

  .md\:prose ol > li::before {
    content: counter(list-item, var(--list-counter-style, decimal)) ".";
    position: absolute;
    font-weight: 400;
    color: #9ca3af;
    left: 0;
  }

  .md\:prose ul > li {
    position: relative;
    padding-left: 1.75em;
  }

  .md\:prose ul > li::before {
    content: "";
    position: absolute;
    background-color: #9ca3af;
    border-radius: 50%;
    width: 0.375em;
    height: 0.375em;
    top: calc(0.875em - 0.1875em);
    left: 0.25em;
  }

  .md\:prose hr {
    border-color: #e5e7eb;
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .md\:prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: #f3f4f6;
    border-left-width: 0.0rem;
    border-left-color: #e5e7eb;
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 0em;
    margin-bottom: 1.6em;
    padding-left: 1em;
    font-size: 150%;
    font-variant: small-caps;
    margin-left: 1em;
  }

  .md\:prose blockquote p:first-of-type::before {
    content: "";
  }

  .md\:prose blockquote p:last-of-type::after {
    content: close-quote;
  }

  .md\:prose h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }

  .md\:prose h2 {
    color: #fff;
    font-weight: 500;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
  }

  .md\:prose h3 {
    color: #fff;
    font-weight: 500;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }

  .md\:prose h4 {
    color: #f9fafb;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }

  .md\:prose figure figcaption {
    color: #6b7280;
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
  }

  .md\:prose code {
    color: #fff;
    font-weight: 700;
    font-size: 0.875em;
  }

  .md\:prose code::before {
    content: "";
  }

  .md\:prose code::after {
    content: "";
  }

  .md\:prose a code {
    color: #fff;
  }

  .md\:prose pre {
    color: #e5e7eb;
    background-color: #1f2937;
    overflow-x: auto;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-right: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-left: 1.1428571em;
  }

  .md\:prose pre code {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: 400;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
  }

  .md\:prose pre code::before {
    content: none;
  }

  .md\:prose pre code::after {
    content: none;
  }

  .md\:prose table {
    width: 100%;
    table-layout: auto;
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
  }

  .md\:prose thead {
    color: #111827;
    font-weight: 600;
    border-bottom-width: 1px;
    border-bottom-color: #d1d5db;
  }

  .md\:prose thead th {
    vertical-align: bottom;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
  }

  .md\:prose tbody tr {
    border-bottom-width: 1px;
    border-bottom-color: #e5e7eb;
  }

  .md\:prose tbody tr:last-child {
    border-bottom-width: 0;
  }

  .md\:prose tbody td {
    vertical-align: top;
    padding-top: 0.5714286em;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
  }

  .md\:prose {
    font-size: 1rem;
    line-height: 1.75;
  }

  .md\:prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }

  .md\:prose img {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .md\:prose video {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .md\:prose figure {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .md\:prose figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:prose h2 code {
    font-size: 0.875em;
  }

  .md\:prose h3 code {
    font-size: 0.9em;
  }

  .md\:prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }

  .md\:prose ul {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }

  .md\:prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .md\:prose > ul > li p {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }

  .md\:prose > ul > li > *:first-child {
    margin-top: 1.25em;
  }

  .md\:prose > ul > li > *:last-child {
    margin-bottom: 1.25em;
  }

  .md\:prose > ol > li > *:first-child {
    margin-top: 1.25em;
  }

  .md\:prose > ol > li > *:last-child {
    margin-bottom: 1.25em;
  }

  .md\:prose ul ul, .md\:prose ul ol, .md\:prose ol ul, .md\:prose ol ol {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }

  .md\:prose hr + * {
    margin-top: 0;
  }

  .md\:prose h2 + * {
    margin-top: 0;
  }

  .md\:prose h3 + * {
    margin-top: 0;
  }

  .md\:prose h4 + * {
    margin-top: 0;
  }

  .md\:prose thead th:first-child {
    padding-left: 0;
  }

  .md\:prose thead th:last-child {
    padding-right: 0;
  }

  .md\:prose tbody td:first-child {
    padding-left: 0;
  }

  .md\:prose tbody td:last-child {
    padding-right: 0;
  }

  .md\:prose > :first-child {
    margin-top: 0;
  }

  .md\:prose > :last-child {
    margin-bottom: 0;
  }

  .md\:prose blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
    color: #919da7;
    position: absolute;
    font-family: Georgia, "Times New Roman", Times, serif;
    content: "\201C";
    font-weight: bold;
    font-style: normal;
  }

  .md\:prose blockquote p:first-of-type::after {
    content: "";
  }

  .md\:prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
  }

  .md\:prose-lg p {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .md\:prose-lg [class~="lead"] {
    font-size: 1.2222222em;
    line-height: 1.4545455;
    margin-top: 1.0909091em;
    margin-bottom: 1.0909091em;
  }

  .md\:prose-lg blockquote {
    margin-top: 0em;
    margin-bottom: 1.6666667em;
    padding-left: 1em;
    margin-left: 0.8em;
  }

  .md\:prose-lg h1 {
    font-size: 2.6666667em;
    margin-top: 0;
    margin-bottom: 0.8333333em;
    line-height: 1;
  }

  .md\:prose-lg h2 {
    font-size: 1.6666667em;
    margin-top: 1.8666667em;
    margin-bottom: 1.0666667em;
    line-height: 1.3333333;
  }

  .md\:prose-lg h3 {
    font-size: 1.3333333em;
    margin-top: 1.6666667em;
    margin-bottom: 0.6666667em;
    line-height: 1.5;
  }

  .md\:prose-lg h4 {
    margin-top: 1.7777778em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;
  }

  .md\:prose-lg img {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .md\:prose-lg video {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .md\:prose-lg figure {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .md\:prose-lg figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:prose-lg figure figcaption {
    font-size: 0.8888889em;
    line-height: 1.5;
    margin-top: 1em;
  }

  .md\:prose-lg code {
    font-size: 0.8888889em;
  }

  .md\:prose-lg h2 code {
    font-size: 0.8666667em;
  }

  .md\:prose-lg h3 code {
    font-size: 0.875em;
  }

  .md\:prose-lg pre {
    font-size: 0.8888889em;
    line-height: 1.75;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
    padding-top: 1em;
    padding-right: 1.5em;
    padding-bottom: 1em;
    padding-left: 1.5em;
  }

  .md\:prose-lg ol {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .md\:prose-lg ul {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .md\:prose-lg li {
    margin-top: 0.6666667em;
    margin-bottom: 0.6666667em;
  }

  .md\:prose-lg ol > li {
    padding-left: 1.6666667em;
  }

  .md\:prose-lg ol > li::before {
    left: 0;
  }

  .md\:prose-lg ul > li {
    padding-left: 1.6666667em;
  }

  .md\:prose-lg ul > li::before {
    width: 0.3333333em;
    height: 0.3333333em;
    top: calc(0.8888889em - 0.1666667em);
    left: 0.2222222em;
  }

  .md\:prose-lg > ul > li p {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .md\:prose-lg > ul > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .md\:prose-lg > ul > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .md\:prose-lg > ol > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .md\:prose-lg > ol > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .md\:prose-lg ul ul, .md\:prose-lg ul ol, .md\:prose-lg ol ul, .md\:prose-lg ol ol {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .md\:prose-lg hr {
    margin-top: 3.1111111em;
    margin-bottom: 3.1111111em;
  }

  .md\:prose-lg hr + * {
    margin-top: 0;
  }

  .md\:prose-lg h2 + * {
    margin-top: 0;
  }

  .md\:prose-lg h3 + * {
    margin-top: 0;
  }

  .md\:prose-lg h4 + * {
    margin-top: 0;
  }

  .md\:prose-lg table {
    font-size: 0.8888889em;
    line-height: 1.5;
  }

  .md\:prose-lg thead th {
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .md\:prose-lg thead th:first-child {
    padding-left: 0;
  }

  .md\:prose-lg thead th:last-child {
    padding-right: 0;
  }

  .md\:prose-lg tbody td {
    padding-top: 0.75em;
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .md\:prose-lg tbody td:first-child {
    padding-left: 0;
  }

  .md\:prose-lg tbody td:last-child {
    padding-right: 0;
  }

  .md\:prose-lg > :first-child {
    margin-top: 0;
  }

  .md\:prose-lg > :last-child {
    margin-bottom: 0;
  }

  .md\:prose-lg blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
  }

  .lg\:prose-lg p {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg [class~="lead"] {
    font-size: 1.2222222em;
    line-height: 1.4545455;
    margin-top: 1.0909091em;
    margin-bottom: 1.0909091em;
  }

  .lg\:prose-lg blockquote {
    margin-top: 0em;
    margin-bottom: 1.6666667em;
    padding-left: 1em;
    margin-left: 0.8em;
  }

  .lg\:prose-lg h1 {
    font-size: 2.6666667em;
    margin-top: 0;
    margin-bottom: 0.8333333em;
    line-height: 1;
  }

  .lg\:prose-lg h2 {
    font-size: 1.6666667em;
    margin-top: 1.8666667em;
    margin-bottom: 1.0666667em;
    line-height: 1.3333333;
  }

  .lg\:prose-lg h3 {
    font-size: 1.3333333em;
    margin-top: 1.6666667em;
    margin-bottom: 0.6666667em;
    line-height: 1.5;
  }

  .lg\:prose-lg h4 {
    margin-top: 1.7777778em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;
  }

  .lg\:prose-lg img {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg video {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg figure {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-lg figure figcaption {
    font-size: 0.8888889em;
    line-height: 1.5;
    margin-top: 1em;
  }

  .lg\:prose-lg code {
    font-size: 0.8888889em;
  }

  .lg\:prose-lg h2 code {
    font-size: 0.8666667em;
  }

  .lg\:prose-lg h3 code {
    font-size: 0.875em;
  }

  .lg\:prose-lg pre {
    font-size: 0.8888889em;
    line-height: 1.75;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
    padding-top: 1em;
    padding-right: 1.5em;
    padding-bottom: 1em;
    padding-left: 1.5em;
  }

  .lg\:prose-lg ol {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg ul {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg li {
    margin-top: 0.6666667em;
    margin-bottom: 0.6666667em;
  }

  .lg\:prose-lg ol > li {
    padding-left: 1.6666667em;
  }

  .lg\:prose-lg ol > li::before {
    left: 0;
  }

  .lg\:prose-lg ul > li {
    padding-left: 1.6666667em;
  }

  .lg\:prose-lg ul > li::before {
    width: 0.3333333em;
    height: 0.3333333em;
    top: calc(0.8888889em - 0.1666667em);
    left: 0.2222222em;
  }

  .lg\:prose-lg > ul > li p {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .lg\:prose-lg > ul > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .lg\:prose-lg > ul > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg > ol > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .lg\:prose-lg > ol > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .lg\:prose-lg hr {
    margin-top: 3.1111111em;
    margin-bottom: 3.1111111em;
  }

  .lg\:prose-lg hr + * {
    margin-top: 0;
  }

  .lg\:prose-lg h2 + * {
    margin-top: 0;
  }

  .lg\:prose-lg h3 + * {
    margin-top: 0;
  }

  .lg\:prose-lg h4 + * {
    margin-top: 0;
  }

  .lg\:prose-lg table {
    font-size: 0.8888889em;
    line-height: 1.5;
  }

  .lg\:prose-lg thead th {
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .lg\:prose-lg thead th:first-child {
    padding-left: 0;
  }

  .lg\:prose-lg thead th:last-child {
    padding-right: 0;
  }

  .lg\:prose-lg tbody td {
    padding-top: 0.75em;
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .lg\:prose-lg tbody td:first-child {
    padding-left: 0;
  }

  .lg\:prose-lg tbody td:last-child {
    padding-right: 0;
  }

  .lg\:prose-lg > :first-child {
    margin-top: 0;
  }

  .lg\:prose-lg > :last-child {
    margin-bottom: 0;
  }

  .lg\:prose-lg blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
  }

  .lg\:prose-xl {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .lg\:prose-xl p {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl [class~="lead"] {
    font-size: 1.2em;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .lg\:prose-xl blockquote {
    margin-top: 0em;
    margin-bottom: 1.6em;
    padding-left: 1.0666667em;
    margin-left: 0.9333333em;
  }

  .lg\:prose-xl h1 {
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 0.8571429em;
    line-height: 1;
  }

  .lg\:prose-xl h2 {
    font-size: 1.8em;
    margin-top: 1.5555556em;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }

  .lg\:prose-xl h3 {
    font-size: 1.5em;
    margin-top: 1.6em;
    margin-bottom: 0.6666667em;
    line-height: 1.3333333;
  }

  .lg\:prose-xl h4 {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }

  .lg\:prose-xl img {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl video {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl figure {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-xl figure figcaption {
    font-size: 0.9em;
    line-height: 1.5555556;
    margin-top: 1em;
  }

  .lg\:prose-xl code {
    font-size: 0.9em;
  }

  .lg\:prose-xl h2 code {
    font-size: 0.8611111em;
  }

  .lg\:prose-xl h3 code {
    font-size: 0.9em;
  }

  .lg\:prose-xl pre {
    font-size: 0.9em;
    line-height: 1.7777778;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.5rem;
    padding-top: 1.1111111em;
    padding-right: 1.3333333em;
    padding-bottom: 1.1111111em;
    padding-left: 1.3333333em;
  }

  .lg\:prose-xl ol {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl ul {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl li {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }

  .lg\:prose-xl ol > li {
    padding-left: 1.8em;
  }

  .lg\:prose-xl ol > li::before {
    left: 0;
  }

  .lg\:prose-xl ul > li {
    padding-left: 1.8em;
  }

  .lg\:prose-xl ul > li::before {
    width: 0.35em;
    height: 0.35em;
    top: calc(0.9em - 0.175em);
    left: 0.25em;
  }

  .lg\:prose-xl > ul > li p {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .lg\:prose-xl > ul > li > *:first-child {
    margin-top: 1.2em;
  }

  .lg\:prose-xl > ul > li > *:last-child {
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl > ol > li > *:first-child {
    margin-top: 1.2em;
  }

  .lg\:prose-xl > ol > li > *:last-child {
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl ul ul, .lg\:prose-xl ul ol, .lg\:prose-xl ol ul, .lg\:prose-xl ol ol {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .lg\:prose-xl hr {
    margin-top: 2.8em;
    margin-bottom: 2.8em;
  }

  .lg\:prose-xl hr + * {
    margin-top: 0;
  }

  .lg\:prose-xl h2 + * {
    margin-top: 0;
  }

  .lg\:prose-xl h3 + * {
    margin-top: 0;
  }

  .lg\:prose-xl h4 + * {
    margin-top: 0;
  }

  .lg\:prose-xl table {
    font-size: 0.9em;
    line-height: 1.5555556;
  }

  .lg\:prose-xl thead th {
    padding-right: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-left: 0.6666667em;
  }

  .lg\:prose-xl thead th:first-child {
    padding-left: 0;
  }

  .lg\:prose-xl thead th:last-child {
    padding-right: 0;
  }

  .lg\:prose-xl tbody td {
    padding-top: 0.8888889em;
    padding-right: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-left: 0.6666667em;
  }

  .lg\:prose-xl tbody td:first-child {
    padding-left: 0;
  }

  .lg\:prose-xl tbody td:last-child {
    padding-right: 0;
  }

  .lg\:prose-xl > :first-child {
    margin-top: 0;
  }

  .lg\:prose-xl > :last-child {
    margin-bottom: 0;
  }

  .lg\:prose-xl blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .xl\:prose-xl {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .xl\:prose-xl p {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .xl\:prose-xl [class~="lead"] {
    font-size: 1.2em;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .xl\:prose-xl blockquote {
    margin-top: 0em;
    margin-bottom: 1.6em;
    padding-left: 1.0666667em;
    margin-left: 0.9333333em;
  }

  .xl\:prose-xl h1 {
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 0.8571429em;
    line-height: 1;
  }

  .xl\:prose-xl h2 {
    font-size: 1.8em;
    margin-top: 1.5555556em;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }

  .xl\:prose-xl h3 {
    font-size: 1.5em;
    margin-top: 1.6em;
    margin-bottom: 0.6666667em;
    line-height: 1.3333333;
  }

  .xl\:prose-xl h4 {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }

  .xl\:prose-xl img {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-xl video {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-xl figure {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-xl figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:prose-xl figure figcaption {
    font-size: 0.9em;
    line-height: 1.5555556;
    margin-top: 1em;
  }

  .xl\:prose-xl code {
    font-size: 0.9em;
  }

  .xl\:prose-xl h2 code {
    font-size: 0.8611111em;
  }

  .xl\:prose-xl h3 code {
    font-size: 0.9em;
  }

  .xl\:prose-xl pre {
    font-size: 0.9em;
    line-height: 1.7777778;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.5rem;
    padding-top: 1.1111111em;
    padding-right: 1.3333333em;
    padding-bottom: 1.1111111em;
    padding-left: 1.3333333em;
  }

  .xl\:prose-xl ol {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .xl\:prose-xl ul {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .xl\:prose-xl li {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }

  .xl\:prose-xl ol > li {
    padding-left: 1.8em;
  }

  .xl\:prose-xl ol > li::before {
    left: 0;
  }

  .xl\:prose-xl ul > li {
    padding-left: 1.8em;
  }

  .xl\:prose-xl ul > li::before {
    width: 0.35em;
    height: 0.35em;
    top: calc(0.9em - 0.175em);
    left: 0.25em;
  }

  .xl\:prose-xl > ul > li p {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .xl\:prose-xl > ul > li > *:first-child {
    margin-top: 1.2em;
  }

  .xl\:prose-xl > ul > li > *:last-child {
    margin-bottom: 1.2em;
  }

  .xl\:prose-xl > ol > li > *:first-child {
    margin-top: 1.2em;
  }

  .xl\:prose-xl > ol > li > *:last-child {
    margin-bottom: 1.2em;
  }

  .xl\:prose-xl ul ul, .xl\:prose-xl ul ol, .xl\:prose-xl ol ul, .xl\:prose-xl ol ol {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .xl\:prose-xl hr {
    margin-top: 2.8em;
    margin-bottom: 2.8em;
  }

  .xl\:prose-xl hr + * {
    margin-top: 0;
  }

  .xl\:prose-xl h2 + * {
    margin-top: 0;
  }

  .xl\:prose-xl h3 + * {
    margin-top: 0;
  }

  .xl\:prose-xl h4 + * {
    margin-top: 0;
  }

  .xl\:prose-xl table {
    font-size: 0.9em;
    line-height: 1.5555556;
  }

  .xl\:prose-xl thead th {
    padding-right: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-left: 0.6666667em;
  }

  .xl\:prose-xl thead th:first-child {
    padding-left: 0;
  }

  .xl\:prose-xl thead th:last-child {
    padding-right: 0;
  }

  .xl\:prose-xl tbody td {
    padding-top: 0.8888889em;
    padding-right: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-left: 0.6666667em;
  }

  .xl\:prose-xl tbody td:first-child {
    padding-left: 0;
  }

  .xl\:prose-xl tbody td:last-child {
    padding-right: 0;
  }

  .xl\:prose-xl > :first-child {
    margin-top: 0;
  }

  .xl\:prose-xl > :last-child {
    margin-bottom: 0;
  }

  .xl\:prose-xl blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
  }

  .xl\:prose-2xl {
    font-size: 1.5rem;
    line-height: 1.6666667;
  }

  .xl\:prose-2xl p {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .xl\:prose-2xl [class~="lead"] {
    font-size: 1.25em;
    line-height: 1.4666667;
    margin-top: 1.0666667em;
    margin-bottom: 1.0666667em;
  }

  .xl\:prose-2xl blockquote {
    margin-top: NaNem;
    margin-bottom: 1.7777778em;
    padding-left: 1.1111111em;
    margin-left: 0.8em;
  }

  .xl\:prose-2xl h1 {
    font-size: 2.6666667em;
    margin-top: 0;
    margin-bottom: 0.875em;
    line-height: 1;
  }

  .xl\:prose-2xl h2 {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 0.8333333em;
    line-height: 1.0833333;
  }

  .xl\:prose-2xl h3 {
    font-size: 1.5em;
    margin-top: 1.5555556em;
    margin-bottom: 0.6666667em;
    line-height: 1.2222222;
  }

  .xl\:prose-2xl h4 {
    margin-top: 1.6666667em;
    margin-bottom: 0.6666667em;
    line-height: 1.5;
  }

  .xl\:prose-2xl img {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-2xl video {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-2xl figure {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .xl\:prose-2xl figure > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:prose-2xl figure figcaption {
    font-size: 0.8333333em;
    line-height: 1.6;
    margin-top: 1em;
  }

  .xl\:prose-2xl code {
    font-size: 0.8333333em;
  }

  .xl\:prose-2xl h2 code {
    font-size: 0.875em;
  }

  .xl\:prose-2xl h3 code {
    font-size: 0.8888889em;
  }

  .xl\:prose-2xl pre {
    font-size: 0.8333333em;
    line-height: 1.8;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.5rem;
    padding-top: 1.2em;
    padding-right: 1.6em;
    padding-bottom: 1.2em;
    padding-left: 1.6em;
  }

  .xl\:prose-2xl ol {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .xl\:prose-2xl ul {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .xl\:prose-2xl li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .xl\:prose-2xl ol > li {
    padding-left: 1.6666667em;
  }

  .xl\:prose-2xl ol > li::before {
    left: 0;
  }

  .xl\:prose-2xl ul > li {
    padding-left: 1.6666667em;
  }

  .xl\:prose-2xl ul > li::before {
    width: 0.3333333em;
    height: 0.3333333em;
    top: calc(0.8333333em - 0.1666667em);
    left: 0.25em;
  }

  .xl\:prose-2xl > ul > li p {
    margin-top: 0.8333333em;
    margin-bottom: 0.8333333em;
  }

  .xl\:prose-2xl > ul > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .xl\:prose-2xl > ul > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .xl\:prose-2xl > ol > li > *:first-child {
    margin-top: 1.3333333em;
  }

  .xl\:prose-2xl > ol > li > *:last-child {
    margin-bottom: 1.3333333em;
  }

  .xl\:prose-2xl ul ul, .xl\:prose-2xl ul ol, .xl\:prose-2xl ol ul, .xl\:prose-2xl ol ol {
    margin-top: 0.6666667em;
    margin-bottom: 0.6666667em;
  }

  .xl\:prose-2xl hr {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .xl\:prose-2xl hr + * {
    margin-top: 0;
  }

  .xl\:prose-2xl h2 + * {
    margin-top: 0;
  }

  .xl\:prose-2xl h3 + * {
    margin-top: 0;
  }

  .xl\:prose-2xl h4 + * {
    margin-top: 0;
  }

  .xl\:prose-2xl table {
    font-size: 0.8333333em;
    line-height: 1.4;
  }

  .xl\:prose-2xl thead th {
    padding-right: 0.6em;
    padding-bottom: 0.8em;
    padding-left: 0.6em;
  }

  .xl\:prose-2xl thead th:first-child {
    padding-left: 0;
  }

  .xl\:prose-2xl thead th:last-child {
    padding-right: 0;
  }

  .xl\:prose-2xl tbody td {
    padding-top: 0.8em;
    padding-right: 0.6em;
    padding-bottom: 0.8em;
    padding-left: 0.6em;
  }

  .xl\:prose-2xl tbody td:first-child {
    padding-left: 0;
  }

  .xl\:prose-2xl tbody td:last-child {
    padding-right: 0;
  }

  .xl\:prose-2xl > :first-child {
    margin-top: 0;
  }

  .xl\:prose-2xl > :last-child {
    margin-bottom: 0;
  }

  .xl\:prose-2xl blockquote:before {
    font-size: 4.5em;
    margin-top: -0.4em;
    margin-left: -0.6em;
  }

  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1536px) {
}




