style.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758
  1. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  2. /* Document
  3. ========================================================================== */
  4. /**
  5. * 1. Correct the line height in all browsers.
  6. * 2. Prevent adjustments of font size after orientation changes in iOS.
  7. */
  8. html {
  9. line-height: 1.15; /* 1 */
  10. -webkit-text-size-adjust: 100%; /* 2 */
  11. }
  12. /* Sections
  13. ========================================================================== */
  14. /**
  15. * Remove the margin in all browsers.
  16. */
  17. body {
  18. margin: 0;
  19. }
  20. /**
  21. * Render the `main` element consistently in IE.
  22. */
  23. main {
  24. display: block;
  25. }
  26. /**
  27. * Correct the font size and margin on `h1` elements within `section` and
  28. * `article` contexts in Chrome, Firefox, and Safari.
  29. */
  30. h1 {
  31. font-size: 2em;
  32. margin: 0.67em 0;
  33. }
  34. /* Grouping content
  35. ========================================================================== */
  36. /**
  37. * 1. Add the correct box sizing in Firefox.
  38. * 2. Show the overflow in Edge and IE.
  39. */
  40. hr {
  41. box-sizing: content-box; /* 1 */
  42. height: 0; /* 1 */
  43. overflow: visible; /* 2 */
  44. }
  45. /**
  46. * 1. Correct the inheritance and scaling of font size in all browsers.
  47. * 2. Correct the odd `em` font sizing in all browsers.
  48. */
  49. pre {
  50. font-family: monospace, monospace; /* 1 */
  51. font-size: 1em; /* 2 */
  52. }
  53. /* Text-level semantics
  54. ========================================================================== */
  55. /**
  56. * Remove the gray background on active links in IE 10.
  57. */
  58. a {
  59. background-color: transparent;
  60. }
  61. /**
  62. * 1. Remove the bottom border in Chrome 57-
  63. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  64. */
  65. abbr[title] {
  66. border-bottom: none; /* 1 */
  67. text-decoration: underline; /* 2 */
  68. -webkit-text-decoration: underline dotted;
  69. text-decoration: underline dotted; /* 2 */
  70. }
  71. /**
  72. * Add the correct font weight in Chrome, Edge, and Safari.
  73. */
  74. b,
  75. strong {
  76. font-weight: bolder;
  77. }
  78. /**
  79. * 1. Correct the inheritance and scaling of font size in all browsers.
  80. * 2. Correct the odd `em` font sizing in all browsers.
  81. */
  82. code,
  83. kbd,
  84. samp {
  85. font-family: monospace, monospace; /* 1 */
  86. font-size: 1em; /* 2 */
  87. }
  88. /**
  89. * Add the correct font size in all browsers.
  90. */
  91. small {
  92. font-size: 80%;
  93. }
  94. /**
  95. * Prevent `sub` and `sup` elements from affecting the line height in
  96. * all browsers.
  97. */
  98. sub,
  99. sup {
  100. font-size: 75%;
  101. line-height: 0;
  102. position: relative;
  103. vertical-align: baseline;
  104. }
  105. sub {
  106. bottom: -0.25em;
  107. }
  108. sup {
  109. top: -0.5em;
  110. }
  111. /* Embedded content
  112. ========================================================================== */
  113. /**
  114. * Remove the border on images inside links in IE 10.
  115. */
  116. img {
  117. border-style: none;
  118. }
  119. /* Forms
  120. ========================================================================== */
  121. /**
  122. * 1. Change the font styles in all browsers.
  123. * 2. Remove the margin in Firefox and Safari.
  124. */
  125. button,
  126. input,
  127. optgroup,
  128. select,
  129. textarea {
  130. font-family: inherit; /* 1 */
  131. font-size: 100%; /* 1 */
  132. line-height: 1.15; /* 1 */
  133. margin: 0; /* 2 */
  134. }
  135. /**
  136. * Show the overflow in IE.
  137. * 1. Show the overflow in Edge.
  138. */
  139. button,
  140. input { /* 1 */
  141. overflow: visible;
  142. }
  143. /**
  144. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  145. * 1. Remove the inheritance of text transform in Firefox.
  146. */
  147. button,
  148. select { /* 1 */
  149. text-transform: none;
  150. }
  151. /**
  152. * Correct the inability to style clickable types in iOS and Safari.
  153. */
  154. button,
  155. [type="button"] {
  156. -webkit-appearance: button;
  157. }
  158. /**
  159. * Remove the inner border and padding in Firefox.
  160. */
  161. button::-moz-focus-inner,
  162. [type="button"]::-moz-focus-inner {
  163. border-style: none;
  164. padding: 0;
  165. }
  166. /**
  167. * Restore the focus styles unset by the previous rule.
  168. */
  169. button:-moz-focusring,
  170. [type="button"]:-moz-focusring {
  171. outline: 1px dotted ButtonText;
  172. }
  173. /**
  174. * Correct the padding in Firefox.
  175. */
  176. fieldset {
  177. padding: 0.35em 0.75em 0.625em;
  178. }
  179. /**
  180. * 1. Correct the text wrapping in Edge and IE.
  181. * 2. Correct the color inheritance from `fieldset` elements in IE.
  182. * 3. Remove the padding so developers are not caught out when they zero out
  183. * `fieldset` elements in all browsers.
  184. */
  185. legend {
  186. box-sizing: border-box; /* 1 */
  187. color: inherit; /* 2 */
  188. display: table; /* 1 */
  189. max-width: 100%; /* 1 */
  190. padding: 0; /* 3 */
  191. white-space: normal; /* 1 */
  192. }
  193. /**
  194. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  195. */
  196. progress {
  197. vertical-align: baseline;
  198. }
  199. /**
  200. * Remove the default vertical scrollbar in IE 10+.
  201. */
  202. textarea {
  203. overflow: auto;
  204. }
  205. /**
  206. * 1. Add the correct box sizing in IE 10.
  207. * 2. Remove the padding in IE 10.
  208. */
  209. /**
  210. * Correct the cursor style of increment and decrement buttons in Chrome.
  211. */
  212. /**
  213. * 1. Correct the odd appearance in Chrome and Safari.
  214. * 2. Correct the outline style in Safari.
  215. */
  216. [type="search"] {
  217. -webkit-appearance: textfield; /* 1 */
  218. outline-offset: -2px; /* 2 */
  219. }
  220. /**
  221. * Remove the inner padding in Chrome and Safari on macOS.
  222. */
  223. [type="search"]::-webkit-search-decoration {
  224. -webkit-appearance: none;
  225. }
  226. /**
  227. * 1. Correct the inability to style clickable types in iOS and Safari.
  228. * 2. Change font properties to `inherit` in Safari.
  229. */
  230. /* Interactive
  231. ========================================================================== */
  232. /*
  233. * Add the correct display in Edge, IE 10+, and Firefox.
  234. */
  235. details {
  236. display: block;
  237. }
  238. /*
  239. * Add the correct display in all browsers.
  240. */
  241. summary {
  242. display: list-item;
  243. }
  244. /* Misc
  245. ========================================================================== */
  246. /**
  247. * Add the correct display in IE 10+.
  248. */
  249. template {
  250. display: none;
  251. }
  252. /**
  253. * Add the correct display in IE 10.
  254. */
  255. /**
  256. * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
  257. * A thin layer on top of normalize.css that provides a starting point more
  258. * suitable for web applications.
  259. */
  260. /**
  261. * Removes the default spacing and border for appropriate elements.
  262. */
  263. blockquote,
  264. dl,
  265. dd,
  266. h1,
  267. h2,
  268. h3,
  269. h4,
  270. h5,
  271. h6,
  272. hr,
  273. figure,
  274. p,
  275. pre {
  276. margin: 0;
  277. }
  278. button {
  279. background-color: transparent;
  280. background-image: none;
  281. }
  282. /**
  283. * Work around a Firefox/IE bug where the transparent `button` background
  284. * results in a loss of the default `button` focus styles.
  285. */
  286. button:focus {
  287. outline: 1px dotted;
  288. outline: 5px auto -webkit-focus-ring-color;
  289. }
  290. fieldset {
  291. margin: 0;
  292. padding: 0;
  293. }
  294. ol,
  295. ul {
  296. list-style: none;
  297. margin: 0;
  298. padding: 0;
  299. }
  300. /**
  301. * Tailwind custom reset styles
  302. */
  303. /**
  304. * 1. Use the user's configured `sans` font-family (with Tailwind's default
  305. * sans-serif font stack as a fallback) as a sane default.
  306. * 2. Use Tailwind's default "normal" line-height so the user isn't forced
  307. * to override it to ensure consistency even when using the default theme.
  308. */
  309. html {
  310. font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  311. line-height: 1.5; /* 2 */
  312. }
  313. /**
  314. * 1. Prevent padding and border from affecting element width.
  315. *
  316. * We used to set this in the html element and inherit from
  317. * the parent element for everything else. This caused issues
  318. * in shadow-dom-enhanced elements like <details> where the content
  319. * is wrapped by a div with box-sizing set to `content-box`.
  320. *
  321. * https://github.com/mozdevs/cssremedy/issues/4
  322. *
  323. *
  324. * 2. Allow adding a border to an element by just adding a border-width.
  325. *
  326. * By default, the way the browser specifies that an element should have no
  327. * border is by setting it's border-style to `none` in the user-agent
  328. * stylesheet.
  329. *
  330. * In order to easily add borders to elements by just setting the `border-width`
  331. * property, we change the default border-style for all elements to `solid`, and
  332. * use border-width to hide them instead. This way our `border` utilities only
  333. * need to set the `border-width` property instead of the entire `border`
  334. * shorthand, making our border utilities much more straightforward to compose.
  335. *
  336. * https://github.com/tailwindcss/tailwindcss/pull/116
  337. */
  338. *,
  339. ::before,
  340. ::after {
  341. box-sizing: border-box; /* 1 */
  342. border-width: 0; /* 2 */
  343. border-style: solid; /* 2 */
  344. border-color: #e2e8f0; /* 2 */
  345. }
  346. /*
  347. * Ensure horizontal rules are visible by default
  348. */
  349. hr {
  350. border-top-width: 1px;
  351. }
  352. /**
  353. * Undo the `border-style: none` reset that Normalize applies to images so that
  354. * our `border-{width}` utilities have the expected effect.
  355. *
  356. * The Normalize reset is unnecessary for us since we default the border-width
  357. * to 0 on all elements.
  358. *
  359. * https://github.com/tailwindcss/tailwindcss/issues/362
  360. */
  361. img {
  362. border-style: solid;
  363. }
  364. textarea {
  365. resize: vertical;
  366. }
  367. input::-moz-placeholder, textarea::-moz-placeholder {
  368. color: #a0aec0;
  369. }
  370. input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  371. color: #a0aec0;
  372. }
  373. input::placeholder,
  374. textarea::placeholder {
  375. color: #a0aec0;
  376. }
  377. button {
  378. cursor: pointer;
  379. }
  380. table {
  381. border-collapse: collapse;
  382. }
  383. h1,
  384. h2,
  385. h3,
  386. h4,
  387. h5,
  388. h6 {
  389. font-size: inherit;
  390. font-weight: inherit;
  391. }
  392. /**
  393. * Reset links to optimize for opt-in styling instead of
  394. * opt-out.
  395. */
  396. a {
  397. color: inherit;
  398. text-decoration: inherit;
  399. }
  400. /**
  401. * Reset form element properties that are easy to forget to
  402. * style explicitly so you don't inadvertently introduce
  403. * styles that deviate from your design system. These styles
  404. * supplement a partial reset that is already applied by
  405. * normalize.css.
  406. */
  407. button,
  408. input,
  409. optgroup,
  410. select,
  411. textarea {
  412. padding: 0;
  413. line-height: inherit;
  414. color: inherit;
  415. }
  416. /**
  417. * Use the configured 'mono' font family for elements that
  418. * are expected to be rendered with a monospace font, falling
  419. * back to the system monospace stack if there is no configured
  420. * 'mono' font family.
  421. */
  422. pre,
  423. code,
  424. kbd,
  425. samp {
  426. font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  427. }
  428. /**
  429. * Make replaced elements `display: block` by default as that's
  430. * the behavior you want almost all of the time. Inspired by
  431. * CSS Remedy, with `svg` added as well.
  432. *
  433. * https://github.com/mozdevs/cssremedy/issues/14
  434. */
  435. img,
  436. svg,
  437. video,
  438. canvas,
  439. audio,
  440. iframe,
  441. embed,
  442. object {
  443. display: block;
  444. vertical-align: middle;
  445. }
  446. /**
  447. * Constrain images and videos to the parent width and preserve
  448. * their instrinsic aspect ratio.
  449. *
  450. * https://github.com/mozdevs/cssremedy/issues/14
  451. */
  452. img,
  453. video {
  454. max-width: 100%;
  455. height: auto;
  456. }
  457. .container {
  458. width: 100%;
  459. }
  460. @media (min-width: 640px) {
  461. .container {
  462. max-width: 640px;
  463. }
  464. }
  465. @media (min-width: 768px) {
  466. .container {
  467. max-width: 768px;
  468. }
  469. }
  470. @media (min-width: 1024px) {
  471. .container {
  472. max-width: 1024px;
  473. }
  474. }
  475. @media (min-width: 1280px) {
  476. .container {
  477. max-width: 1280px;
  478. }
  479. }
  480. .prose {
  481. color: #4a5568;
  482. max-width: 65ch;
  483. }
  484. .prose [class~="lead"] {
  485. color: #4a5568;
  486. font-size: 1.25em;
  487. line-height: 1.6;
  488. margin-top: 1.2em;
  489. margin-bottom: 1.2em;
  490. }
  491. .prose a {
  492. color: #1a202c;
  493. text-decoration: underline;
  494. }
  495. .prose strong {
  496. color: #1a202c;
  497. font-weight: 600;
  498. }
  499. .prose ol {
  500. counter-reset: list-counter;
  501. margin-top: 1.25em;
  502. margin-bottom: 1.25em;
  503. }
  504. .prose ol > li {
  505. position: relative;
  506. counter-increment: list-counter;
  507. padding-left: 1.75em;
  508. }
  509. .prose ol > li::before {
  510. content: counter(list-counter) ".";
  511. position: absolute;
  512. font-weight: 400;
  513. color: #718096;
  514. }
  515. .prose ul > li {
  516. position: relative;
  517. padding-left: 1.75em;
  518. }
  519. .prose ul > li::before {
  520. content: "";
  521. position: absolute;
  522. background-color: #cbd5e0;
  523. border-radius: 50%;
  524. width: 0.375em;
  525. height: 0.375em;
  526. top: calc(0.875em - 0.1875em);
  527. left: 0.25em;
  528. }
  529. .prose hr {
  530. border-color: #e2e8f0;
  531. border-top-width: 1px;
  532. margin-top: 3em;
  533. margin-bottom: 3em;
  534. }
  535. .prose blockquote {
  536. font-weight: 500;
  537. font-style: italic;
  538. color: #1a202c;
  539. border-left-width: 0.25rem;
  540. border-left-color: #e2e8f0;
  541. quotes: "\201C""\201D""\2018""\2019";
  542. margin-top: 1.6em;
  543. margin-bottom: 1.6em;
  544. padding-left: 1em;
  545. }
  546. .prose blockquote p:first-of-type::before {
  547. content: open-quote;
  548. }
  549. .prose blockquote p:last-of-type::after {
  550. content: close-quote;
  551. }
  552. .prose h1 {
  553. color: #1a202c;
  554. font-weight: 800;
  555. font-size: 2.25em;
  556. margin-top: 0;
  557. margin-bottom: 0.8888889em;
  558. line-height: 1.1111111;
  559. }
  560. .prose h2 {
  561. color: #1a202c;
  562. font-weight: 700;
  563. font-size: 1.5em;
  564. margin-top: 2em;
  565. margin-bottom: 1em;
  566. line-height: 1.3333333;
  567. }
  568. .prose h3 {
  569. color: #1a202c;
  570. font-weight: 600;
  571. font-size: 1.25em;
  572. margin-top: 1.6em;
  573. margin-bottom: 0.6em;
  574. line-height: 1.6;
  575. }
  576. .prose h4 {
  577. color: #1a202c;
  578. font-weight: 600;
  579. margin-top: 1.5em;
  580. margin-bottom: 0.5em;
  581. line-height: 1.5;
  582. }
  583. .prose figure figcaption {
  584. color: #718096;
  585. font-size: 0.875em;
  586. line-height: 1.4285714;
  587. margin-top: 0.8571429em;
  588. }
  589. .prose code {
  590. color: #1a202c;
  591. font-weight: 600;
  592. font-size: 0.875em;
  593. }
  594. .prose code::before {
  595. content: "`";
  596. }
  597. .prose code::after {
  598. content: "`";
  599. }
  600. .prose pre {
  601. color: #e2e8f0;
  602. background-color: #2d3748;
  603. overflow-x: auto;
  604. font-size: 0.875em;
  605. line-height: 1.7142857;
  606. margin-top: 1.7142857em;
  607. margin-bottom: 1.7142857em;
  608. border-radius: 0.375rem;
  609. padding-top: 0.8571429em;
  610. padding-right: 1.1428571em;
  611. padding-bottom: 0.8571429em;
  612. padding-left: 1.1428571em;
  613. }
  614. .prose pre code {
  615. background-color: transparent;
  616. border-width: 0;
  617. border-radius: 0;
  618. padding: 0;
  619. font-weight: 400;
  620. color: inherit;
  621. font-size: inherit;
  622. font-family: inherit;
  623. line-height: inherit;
  624. }
  625. .prose pre code::before {
  626. content: "";
  627. }
  628. .prose pre code::after {
  629. content: "";
  630. }
  631. .prose table {
  632. width: 100%;
  633. table-layout: auto;
  634. text-align: left;
  635. margin-top: 2em;
  636. margin-bottom: 2em;
  637. font-size: 0.875em;
  638. line-height: 1.7142857;
  639. }
  640. .prose thead {
  641. color: #1a202c;
  642. font-weight: 600;
  643. border-bottom-width: 1px;
  644. border-bottom-color: #cbd5e0;
  645. }
  646. .prose thead th {
  647. vertical-align: bottom;
  648. padding-right: 0.5714286em;
  649. padding-bottom: 0.5714286em;
  650. padding-left: 0.5714286em;
  651. }
  652. .prose tbody tr {
  653. border-bottom-width: 1px;
  654. border-bottom-color: #e2e8f0;
  655. }
  656. .prose tbody tr:last-child {
  657. border-bottom-width: 0;
  658. }
  659. .prose tbody td {
  660. vertical-align: top;
  661. padding-top: 0.5714286em;
  662. padding-right: 0.5714286em;
  663. padding-bottom: 0.5714286em;
  664. padding-left: 0.5714286em;
  665. }
  666. .prose {
  667. font-size: 1rem;
  668. line-height: 1.75;
  669. }
  670. .prose p {
  671. margin-top: 1.25em;
  672. margin-bottom: 1.25em;
  673. }
  674. .prose img {
  675. margin-top: 2em;
  676. margin-bottom: 2em;
  677. }
  678. .prose video {
  679. margin-top: 2em;
  680. margin-bottom: 2em;
  681. }
  682. .prose figure {
  683. margin-top: 2em;
  684. margin-bottom: 2em;
  685. }
  686. .prose figure > * {
  687. margin-top: 0;
  688. margin-bottom: 0;
  689. }
  690. .prose h2 code {
  691. font-size: 0.875em;
  692. }
  693. .prose h3 code {
  694. font-size: 0.9em;
  695. }
  696. .prose ul {
  697. margin-top: 1.25em;
  698. margin-bottom: 1.25em;
  699. }
  700. .prose li {
  701. margin-top: 0.5em;
  702. margin-bottom: 0.5em;
  703. }
  704. .prose ol > li:before {
  705. left: 0;
  706. }
  707. .prose > ul > li p {
  708. margin-top: 0.75em;
  709. margin-bottom: 0.75em;
  710. }
  711. .prose > ul > li > *:first-child {
  712. margin-top: 1.25em;
  713. }
  714. .prose > ul > li > *:last-child {
  715. margin-bottom: 1.25em;
  716. }
  717. .prose > ol > li > *:first-child {
  718. margin-top: 1.25em;
  719. }
  720. .prose > ol > li > *:last-child {
  721. margin-bottom: 1.25em;
  722. }
  723. .prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
  724. margin-top: 0.75em;
  725. margin-bottom: 0.75em;
  726. }
  727. .prose hr + * {
  728. margin-top: 0;
  729. }
  730. .prose h2 + * {
  731. margin-top: 0;
  732. }
  733. .prose h3 + * {
  734. margin-top: 0;
  735. }
  736. .prose h4 + * {
  737. margin-top: 0;
  738. }
  739. .prose thead th:first-child {
  740. padding-left: 0;
  741. }
  742. .prose thead th:last-child {
  743. padding-right: 0;
  744. }
  745. .prose tbody td:first-child {
  746. padding-left: 0;
  747. }
  748. .prose tbody td:last-child {
  749. padding-right: 0;
  750. }
  751. .prose > :first-child {
  752. margin-top: 0;
  753. }
  754. .prose > :last-child {
  755. margin-bottom: 0;
  756. }
  757. .debug-screens::before {
  758. position: fixed;
  759. z-index: 2147483647;
  760. bottom: 0;
  761. left: 0;
  762. padding: .3333333em .5em;
  763. font-size: 12px;
  764. line-height: 1;
  765. font-family: sans-serif;
  766. background-color: #000;
  767. color: #fff;
  768. box-shadow: 0 0 0 1px #fff;
  769. content: 'screen: _';
  770. }
  771. @media (min-width: 640px) {
  772. .debug-screens::before {
  773. content: 'screen: sm';
  774. }
  775. }
  776. @media (min-width: 768px) {
  777. .debug-screens::before {
  778. content: 'screen: md';
  779. }
  780. }
  781. @media (min-width: 1024px) {
  782. .debug-screens::before {
  783. content: 'screen: lg';
  784. }
  785. }
  786. @media (min-width: 1280px) {
  787. .debug-screens::before {
  788. content: 'screen: xl';
  789. }
  790. }
  791. .border-2 {
  792. border-width: 2px;
  793. }
  794. .border {
  795. border-width: 1px;
  796. }
  797. .table {
  798. display: table;
  799. }
  800. .contents {
  801. display: contents;
  802. }
  803. .mx-auto {
  804. margin-left: auto;
  805. margin-right: auto;
  806. }
  807. .max-w-screen-lg {
  808. max-width: 1024px;
  809. }
  810. .px-4 {
  811. padding-left: 1rem;
  812. padding-right: 1rem;
  813. }
  814. .pb-8 {
  815. padding-bottom: 2rem;
  816. }
  817. .static {
  818. position: static;
  819. }
  820. @-webkit-keyframes spin {
  821. to {
  822. transform: rotate(360deg);
  823. }
  824. }
  825. @keyframes spin {
  826. to {
  827. transform: rotate(360deg);
  828. }
  829. }
  830. @-webkit-keyframes ping {
  831. 75%, 100% {
  832. transform: scale(2);
  833. opacity: 0;
  834. }
  835. }
  836. @keyframes ping {
  837. 75%, 100% {
  838. transform: scale(2);
  839. opacity: 0;
  840. }
  841. }
  842. @-webkit-keyframes pulse {
  843. 50% {
  844. opacity: .5;
  845. }
  846. }
  847. @keyframes pulse {
  848. 50% {
  849. opacity: .5;
  850. }
  851. }
  852. @-webkit-keyframes bounce {
  853. 0%, 100% {
  854. transform: translateY(-25%);
  855. -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
  856. animation-timing-function: cubic-bezier(0.8,0,1,1);
  857. }
  858. 50% {
  859. transform: none;
  860. -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
  861. animation-timing-function: cubic-bezier(0,0,0.2,1);
  862. }
  863. }
  864. @keyframes bounce {
  865. 0%, 100% {
  866. transform: translateY(-25%);
  867. -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
  868. animation-timing-function: cubic-bezier(0.8,0,1,1);
  869. }
  870. 50% {
  871. transform: none;
  872. -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
  873. animation-timing-function: cubic-bezier(0,0,0.2,1);
  874. }
  875. }
  876. @media (min-width: 640px) {
  877. .sm\:px-6 {
  878. padding-left: 1.5rem;
  879. padding-right: 1.5rem;
  880. }
  881. }
  882. @media (min-width: 768px) {
  883. .md\:prose-lg {
  884. font-size: 1.125rem;
  885. line-height: 1.7777778;
  886. }
  887. .md\:prose-lg p {
  888. margin-top: 1.3333333em;
  889. margin-bottom: 1.3333333em;
  890. }
  891. .md\:prose-lg [class~="lead"] {
  892. font-size: 1.2222222em;
  893. line-height: 1.4545455;
  894. margin-top: 1.0909091em;
  895. margin-bottom: 1.0909091em;
  896. }
  897. .md\:prose-lg blockquote {
  898. margin-top: 1.6666667em;
  899. margin-bottom: 1.6666667em;
  900. padding-left: 1em;
  901. }
  902. .md\:prose-lg h1 {
  903. font-size: 2.6666667em;
  904. margin-top: 0;
  905. margin-bottom: 0.8333333em;
  906. line-height: 1;
  907. }
  908. .md\:prose-lg h2 {
  909. font-size: 1.6666667em;
  910. margin-top: 1.8666667em;
  911. margin-bottom: 1.0666667em;
  912. line-height: 1.3333333;
  913. }
  914. .md\:prose-lg h3 {
  915. font-size: 1.3333333em;
  916. margin-top: 1.6666667em;
  917. margin-bottom: 0.6666667em;
  918. line-height: 1.5;
  919. }
  920. .md\:prose-lg h4 {
  921. margin-top: 1.7777778em;
  922. margin-bottom: 0.4444444em;
  923. line-height: 1.5555556;
  924. }
  925. .md\:prose-lg img {
  926. margin-top: 1.7777778em;
  927. margin-bottom: 1.7777778em;
  928. }
  929. .md\:prose-lg video {
  930. margin-top: 1.7777778em;
  931. margin-bottom: 1.7777778em;
  932. }
  933. .md\:prose-lg figure {
  934. margin-top: 1.7777778em;
  935. margin-bottom: 1.7777778em;
  936. }
  937. .md\:prose-lg figure > * {
  938. margin-top: 0;
  939. margin-bottom: 0;
  940. }
  941. .md\:prose-lg figure figcaption {
  942. font-size: 0.8888889em;
  943. line-height: 1.5;
  944. margin-top: 1em;
  945. }
  946. .md\:prose-lg code {
  947. font-size: 0.8888889em;
  948. }
  949. .md\:prose-lg h2 code {
  950. font-size: 0.8666667em;
  951. }
  952. .md\:prose-lg h3 code {
  953. font-size: 0.875em;
  954. }
  955. .md\:prose-lg pre {
  956. font-size: 0.8888889em;
  957. line-height: 1.75;
  958. margin-top: 2em;
  959. margin-bottom: 2em;
  960. border-radius: 0.375rem;
  961. padding-top: 1em;
  962. padding-right: 1.5em;
  963. padding-bottom: 1em;
  964. padding-left: 1.5em;
  965. }
  966. .md\:prose-lg ol {
  967. margin-top: 1.3333333em;
  968. margin-bottom: 1.3333333em;
  969. }
  970. .md\:prose-lg ul {
  971. margin-top: 1.3333333em;
  972. margin-bottom: 1.3333333em;
  973. }
  974. .md\:prose-lg li {
  975. margin-top: 0.6666667em;
  976. margin-bottom: 0.6666667em;
  977. }
  978. .md\:prose-lg ol > li {
  979. padding-left: 1.6666667em;
  980. }
  981. .md\:prose-lg ol > li:before {
  982. left: 0;
  983. }
  984. .md\:prose-lg ul > li {
  985. padding-left: 1.6666667em;
  986. }
  987. .md\:prose-lg ul > li::before {
  988. width: 0.3333333em;
  989. height: 0.3333333em;
  990. top: calc(0.8888889em - 0.1666667em);
  991. left: 0.2222222em;
  992. }
  993. .md\:prose-lg > ul > li p {
  994. margin-top: 0.8888889em;
  995. margin-bottom: 0.8888889em;
  996. }
  997. .md\:prose-lg > ul > li > *:first-child {
  998. margin-top: 1.3333333em;
  999. }
  1000. .md\:prose-lg > ul > li > *:last-child {
  1001. margin-bottom: 1.3333333em;
  1002. }
  1003. .md\:prose-lg > ol > li > *:first-child {
  1004. margin-top: 1.3333333em;
  1005. }
  1006. .md\:prose-lg > ol > li > *:last-child {
  1007. margin-bottom: 1.3333333em;
  1008. }
  1009. .md\:prose-lg ul ul, .md\:prose-lg ul ol, .md\:prose-lg ol ul, .md\:prose-lg ol ol {
  1010. margin-top: 0.8888889em;
  1011. margin-bottom: 0.8888889em;
  1012. }
  1013. .md\:prose-lg hr {
  1014. margin-top: 3.1111111em;
  1015. margin-bottom: 3.1111111em;
  1016. }
  1017. .md\:prose-lg hr + * {
  1018. margin-top: 0;
  1019. }
  1020. .md\:prose-lg h2 + * {
  1021. margin-top: 0;
  1022. }
  1023. .md\:prose-lg h3 + * {
  1024. margin-top: 0;
  1025. }
  1026. .md\:prose-lg h4 + * {
  1027. margin-top: 0;
  1028. }
  1029. .md\:prose-lg table {
  1030. font-size: 0.8888889em;
  1031. line-height: 1.5;
  1032. }
  1033. .md\:prose-lg thead th {
  1034. padding-right: 0.75em;
  1035. padding-bottom: 0.75em;
  1036. padding-left: 0.75em;
  1037. }
  1038. .md\:prose-lg thead th:first-child {
  1039. padding-left: 0;
  1040. }
  1041. .md\:prose-lg thead th:last-child {
  1042. padding-right: 0;
  1043. }
  1044. .md\:prose-lg tbody td {
  1045. padding-top: 0.75em;
  1046. padding-right: 0.75em;
  1047. padding-bottom: 0.75em;
  1048. padding-left: 0.75em;
  1049. }
  1050. .md\:prose-lg tbody td:first-child {
  1051. padding-left: 0;
  1052. }
  1053. .md\:prose-lg tbody td:last-child {
  1054. padding-right: 0;
  1055. }
  1056. .md\:prose-lg > :first-child {
  1057. margin-top: 0;
  1058. }
  1059. .md\:prose-lg > :last-child {
  1060. margin-bottom: 0;
  1061. }
  1062. }
  1063. @media (min-width: 1024px) {
  1064. .lg\:prose-lg {
  1065. font-size: 1.125rem;
  1066. line-height: 1.7777778;
  1067. }
  1068. .lg\:prose-lg p {
  1069. margin-top: 1.3333333em;
  1070. margin-bottom: 1.3333333em;
  1071. }
  1072. .lg\:prose-lg [class~="lead"] {
  1073. font-size: 1.2222222em;
  1074. line-height: 1.4545455;
  1075. margin-top: 1.0909091em;
  1076. margin-bottom: 1.0909091em;
  1077. }
  1078. .lg\:prose-lg blockquote {
  1079. margin-top: 1.6666667em;
  1080. margin-bottom: 1.6666667em;
  1081. padding-left: 1em;
  1082. }
  1083. .lg\:prose-lg h1 {
  1084. font-size: 2.6666667em;
  1085. margin-top: 0;
  1086. margin-bottom: 0.8333333em;
  1087. line-height: 1;
  1088. }
  1089. .lg\:prose-lg h2 {
  1090. font-size: 1.6666667em;
  1091. margin-top: 1.8666667em;
  1092. margin-bottom: 1.0666667em;
  1093. line-height: 1.3333333;
  1094. }
  1095. .lg\:prose-lg h3 {
  1096. font-size: 1.3333333em;
  1097. margin-top: 1.6666667em;
  1098. margin-bottom: 0.6666667em;
  1099. line-height: 1.5;
  1100. }
  1101. .lg\:prose-lg h4 {
  1102. margin-top: 1.7777778em;
  1103. margin-bottom: 0.4444444em;
  1104. line-height: 1.5555556;
  1105. }
  1106. .lg\:prose-lg img {
  1107. margin-top: 1.7777778em;
  1108. margin-bottom: 1.7777778em;
  1109. }
  1110. .lg\:prose-lg video {
  1111. margin-top: 1.7777778em;
  1112. margin-bottom: 1.7777778em;
  1113. }
  1114. .lg\:prose-lg figure {
  1115. margin-top: 1.7777778em;
  1116. margin-bottom: 1.7777778em;
  1117. }
  1118. .lg\:prose-lg figure > * {
  1119. margin-top: 0;
  1120. margin-bottom: 0;
  1121. }
  1122. .lg\:prose-lg figure figcaption {
  1123. font-size: 0.8888889em;
  1124. line-height: 1.5;
  1125. margin-top: 1em;
  1126. }
  1127. .lg\:prose-lg code {
  1128. font-size: 0.8888889em;
  1129. }
  1130. .lg\:prose-lg h2 code {
  1131. font-size: 0.8666667em;
  1132. }
  1133. .lg\:prose-lg h3 code {
  1134. font-size: 0.875em;
  1135. }
  1136. .lg\:prose-lg pre {
  1137. font-size: 0.8888889em;
  1138. line-height: 1.75;
  1139. margin-top: 2em;
  1140. margin-bottom: 2em;
  1141. border-radius: 0.375rem;
  1142. padding-top: 1em;
  1143. padding-right: 1.5em;
  1144. padding-bottom: 1em;
  1145. padding-left: 1.5em;
  1146. }
  1147. .lg\:prose-lg ol {
  1148. margin-top: 1.3333333em;
  1149. margin-bottom: 1.3333333em;
  1150. }
  1151. .lg\:prose-lg ul {
  1152. margin-top: 1.3333333em;
  1153. margin-bottom: 1.3333333em;
  1154. }
  1155. .lg\:prose-lg li {
  1156. margin-top: 0.6666667em;
  1157. margin-bottom: 0.6666667em;
  1158. }
  1159. .lg\:prose-lg ol > li {
  1160. padding-left: 1.6666667em;
  1161. }
  1162. .lg\:prose-lg ol > li:before {
  1163. left: 0;
  1164. }
  1165. .lg\:prose-lg ul > li {
  1166. padding-left: 1.6666667em;
  1167. }
  1168. .lg\:prose-lg ul > li::before {
  1169. width: 0.3333333em;
  1170. height: 0.3333333em;
  1171. top: calc(0.8888889em - 0.1666667em);
  1172. left: 0.2222222em;
  1173. }
  1174. .lg\:prose-lg > ul > li p {
  1175. margin-top: 0.8888889em;
  1176. margin-bottom: 0.8888889em;
  1177. }
  1178. .lg\:prose-lg > ul > li > *:first-child {
  1179. margin-top: 1.3333333em;
  1180. }
  1181. .lg\:prose-lg > ul > li > *:last-child {
  1182. margin-bottom: 1.3333333em;
  1183. }
  1184. .lg\:prose-lg > ol > li > *:first-child {
  1185. margin-top: 1.3333333em;
  1186. }
  1187. .lg\:prose-lg > ol > li > *:last-child {
  1188. margin-bottom: 1.3333333em;
  1189. }
  1190. .lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol {
  1191. margin-top: 0.8888889em;
  1192. margin-bottom: 0.8888889em;
  1193. }
  1194. .lg\:prose-lg hr {
  1195. margin-top: 3.1111111em;
  1196. margin-bottom: 3.1111111em;
  1197. }
  1198. .lg\:prose-lg hr + * {
  1199. margin-top: 0;
  1200. }
  1201. .lg\:prose-lg h2 + * {
  1202. margin-top: 0;
  1203. }
  1204. .lg\:prose-lg h3 + * {
  1205. margin-top: 0;
  1206. }
  1207. .lg\:prose-lg h4 + * {
  1208. margin-top: 0;
  1209. }
  1210. .lg\:prose-lg table {
  1211. font-size: 0.8888889em;
  1212. line-height: 1.5;
  1213. }
  1214. .lg\:prose-lg thead th {
  1215. padding-right: 0.75em;
  1216. padding-bottom: 0.75em;
  1217. padding-left: 0.75em;
  1218. }
  1219. .lg\:prose-lg thead th:first-child {
  1220. padding-left: 0;
  1221. }
  1222. .lg\:prose-lg thead th:last-child {
  1223. padding-right: 0;
  1224. }
  1225. .lg\:prose-lg tbody td {
  1226. padding-top: 0.75em;
  1227. padding-right: 0.75em;
  1228. padding-bottom: 0.75em;
  1229. padding-left: 0.75em;
  1230. }
  1231. .lg\:prose-lg tbody td:first-child {
  1232. padding-left: 0;
  1233. }
  1234. .lg\:prose-lg tbody td:last-child {
  1235. padding-right: 0;
  1236. }
  1237. .lg\:prose-lg > :first-child {
  1238. margin-top: 0;
  1239. }
  1240. .lg\:prose-lg > :last-child {
  1241. margin-bottom: 0;
  1242. }
  1243. .lg\:px-8 {
  1244. padding-left: 2rem;
  1245. padding-right: 2rem;
  1246. }
  1247. .lg\:pb-8 {
  1248. padding-bottom: 2rem;
  1249. }
  1250. }
  1251. @media (min-width: 1280px) {
  1252. .xl\:prose-xl {
  1253. font-size: 1.25rem;
  1254. line-height: 1.8;
  1255. }
  1256. .xl\:prose-xl p {
  1257. margin-top: 1.2em;
  1258. margin-bottom: 1.2em;
  1259. }
  1260. .xl\:prose-xl [class~="lead"] {
  1261. font-size: 1.2em;
  1262. line-height: 1.5;
  1263. margin-top: 1em;
  1264. margin-bottom: 1em;
  1265. }
  1266. .xl\:prose-xl blockquote {
  1267. margin-top: 1.6em;
  1268. margin-bottom: 1.6em;
  1269. padding-left: 1.0666667em;
  1270. }
  1271. .xl\:prose-xl h1 {
  1272. font-size: 2.8em;
  1273. margin-top: 0;
  1274. margin-bottom: 0.8571429em;
  1275. line-height: 1;
  1276. }
  1277. .xl\:prose-xl h2 {
  1278. font-size: 1.8em;
  1279. margin-top: 1.5555556em;
  1280. margin-bottom: 0.8888889em;
  1281. line-height: 1.1111111;
  1282. }
  1283. .xl\:prose-xl h3 {
  1284. font-size: 1.5em;
  1285. margin-top: 1.6em;
  1286. margin-bottom: 0.6666667em;
  1287. line-height: 1.3333333;
  1288. }
  1289. .xl\:prose-xl h4 {
  1290. margin-top: 1.8em;
  1291. margin-bottom: 0.6em;
  1292. line-height: 1.6;
  1293. }
  1294. .xl\:prose-xl img {
  1295. margin-top: 2em;
  1296. margin-bottom: 2em;
  1297. }
  1298. .xl\:prose-xl video {
  1299. margin-top: 2em;
  1300. margin-bottom: 2em;
  1301. }
  1302. .xl\:prose-xl figure {
  1303. margin-top: 2em;
  1304. margin-bottom: 2em;
  1305. }
  1306. .xl\:prose-xl figure > * {
  1307. margin-top: 0;
  1308. margin-bottom: 0;
  1309. }
  1310. .xl\:prose-xl figure figcaption {
  1311. font-size: 0.9em;
  1312. line-height: 1.5555556;
  1313. margin-top: 1em;
  1314. }
  1315. .xl\:prose-xl code {
  1316. font-size: 0.9em;
  1317. }
  1318. .xl\:prose-xl h2 code {
  1319. font-size: 0.8611111em;
  1320. }
  1321. .xl\:prose-xl h3 code {
  1322. font-size: 0.9em;
  1323. }
  1324. .xl\:prose-xl pre {
  1325. font-size: 0.9em;
  1326. line-height: 1.7777778;
  1327. margin-top: 2em;
  1328. margin-bottom: 2em;
  1329. border-radius: 0.5rem;
  1330. padding-top: 1.1111111em;
  1331. padding-right: 1.3333333em;
  1332. padding-bottom: 1.1111111em;
  1333. padding-left: 1.3333333em;
  1334. }
  1335. .xl\:prose-xl ol {
  1336. margin-top: 1.2em;
  1337. margin-bottom: 1.2em;
  1338. }
  1339. .xl\:prose-xl ul {
  1340. margin-top: 1.2em;
  1341. margin-bottom: 1.2em;
  1342. }
  1343. .xl\:prose-xl li {
  1344. margin-top: 0.6em;
  1345. margin-bottom: 0.6em;
  1346. }
  1347. .xl\:prose-xl ol > li {
  1348. padding-left: 1.8em;
  1349. }
  1350. .xl\:prose-xl ol > li:before {
  1351. left: 0;
  1352. }
  1353. .xl\:prose-xl ul > li {
  1354. padding-left: 1.8em;
  1355. }
  1356. .xl\:prose-xl ul > li::before {
  1357. width: 0.35em;
  1358. height: 0.35em;
  1359. top: calc(0.9em - 0.175em);
  1360. left: 0.25em;
  1361. }
  1362. .xl\:prose-xl > ul > li p {
  1363. margin-top: 0.8em;
  1364. margin-bottom: 0.8em;
  1365. }
  1366. .xl\:prose-xl > ul > li > *:first-child {
  1367. margin-top: 1.2em;
  1368. }
  1369. .xl\:prose-xl > ul > li > *:last-child {
  1370. margin-bottom: 1.2em;
  1371. }
  1372. .xl\:prose-xl > ol > li > *:first-child {
  1373. margin-top: 1.2em;
  1374. }
  1375. .xl\:prose-xl > ol > li > *:last-child {
  1376. margin-bottom: 1.2em;
  1377. }
  1378. .xl\:prose-xl ul ul, .xl\:prose-xl ul ol, .xl\:prose-xl ol ul, .xl\:prose-xl ol ol {
  1379. margin-top: 0.8em;
  1380. margin-bottom: 0.8em;
  1381. }
  1382. .xl\:prose-xl hr {
  1383. margin-top: 2.8em;
  1384. margin-bottom: 2.8em;
  1385. }
  1386. .xl\:prose-xl hr + * {
  1387. margin-top: 0;
  1388. }
  1389. .xl\:prose-xl h2 + * {
  1390. margin-top: 0;
  1391. }
  1392. .xl\:prose-xl h3 + * {
  1393. margin-top: 0;
  1394. }
  1395. .xl\:prose-xl h4 + * {
  1396. margin-top: 0;
  1397. }
  1398. .xl\:prose-xl table {
  1399. font-size: 0.9em;
  1400. line-height: 1.5555556;
  1401. }
  1402. .xl\:prose-xl thead th {
  1403. padding-right: 0.6666667em;
  1404. padding-bottom: 0.8888889em;
  1405. padding-left: 0.6666667em;
  1406. }
  1407. .xl\:prose-xl thead th:first-child {
  1408. padding-left: 0;
  1409. }
  1410. .xl\:prose-xl thead th:last-child {
  1411. padding-right: 0;
  1412. }
  1413. .xl\:prose-xl tbody td {
  1414. padding-top: 0.8888889em;
  1415. padding-right: 0.6666667em;
  1416. padding-bottom: 0.8888889em;
  1417. padding-left: 0.6666667em;
  1418. }
  1419. .xl\:prose-xl tbody td:first-child {
  1420. padding-left: 0;
  1421. }
  1422. .xl\:prose-xl tbody td:last-child {
  1423. padding-right: 0;
  1424. }
  1425. .xl\:prose-xl > :first-child {
  1426. margin-top: 0;
  1427. }
  1428. .xl\:prose-xl > :last-child {
  1429. margin-bottom: 0;
  1430. }
  1431. }