
/* customized */

@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=DynaPuff:wght@400..700&family=Yusei+Magic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=DynaPuff:wght@400..700&family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Yusei+Magic&display=swap');

.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* add a class here which will change the color of the font to white */ 
.white-text {
  color: white;
}

yeet-white-black {
  display: inline-block;
  background: inherit;
  background: var(--yeet);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* customizations end */


:root {
  --header-font: "DynaPuff", system-ui;
  --body-font: basic-sans, system-ui, sans-serif;
  --content-font: "Yusei Magic",  system-ui;
  --code-font: Monotalic, monotalic, menlo, monaco, monospace;
}

:root {
  --spacing-unit: 30px;
  --container-width: 1200px;
  --box-width: 800px;
  --content-width: 800px;
  --on-phone: 610px;
  --on-tablet: 960px;
}

:root {
  --font-size: 20px;
  --line-height: 1.75em;
}
@media screen and (max-width: 960px) {
  :root {
    --font-size: 16px;
  }
}

:root {
  --spacing-unit: 30px;
}
@media screen and (max-width: 960px) {
  :root {
    --spacing-unit: 20px;
  }
}
@media screen and (max-width: 610px) {
  :root {
    --spacing-unit: 12px;
  }
}

:root {
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 24px;
  --border-radius-circle: 9969px;
  --border-radius: 14px;
  --letter-border-width: 24px;
}

:root {
  --lightgray: #f2f2f2;
  --gray: #C0C0C0;
  --darkgray: #333;
  --white: #fff;
  --charcoal: #331e3e;
  --sand: #f2f2f2;
  --vylet: #331e3e;
  --fuchsia: #6c3f83;
  --lavender: #ecd1fa;
  --zeo: #6d4c93;
  --uno: #e376b6;
  --duo: #f0d175;
  --tre: #75f0db;
  --accent-gray: #C0C0C0;
  --accent-pink: #DD8DB8;
  --accent-red: #DA7979;
  --accent-orange: #E99D74;
  --accent-yellow: #ECE57F;
  --accent-green: #A7E2CA;
  --accent-teal: #A7E2CA;
  --accent-blue: #A6D7DD;
  --accent-purple: #A99DC7;
  --yeet: linear-gradient(to bottom right, #503c45, #8a00a9);
  --yeet-white-black : linear-gradient(to bottom right, #D99AB5, #A054B1, #fff, #000);
  --sparkly: linear-gradient(to bottom right, #ff007a, #ffea00);
  --hover-bg: rgba(120, 60, 120, 0.1);
}
:root .bg-lightgray {
  background-color: #f2f2f2;
}
:root .color-lightgray {
  color: #f2f2f2;
}
:root .bg-gray {
  background-color: #C0C0C0;
}
:root .color-gray {
  color: #C0C0C0;
}
:root .bg-darkgray {
  background-color: #333;
}
:root .color-darkgray {
  color: #333;
}
:root .bg-white {
  background-color: #fff;
}
:root .color-white {
  color: #fff;
}
:root .bg-charcoal {
  background-color: #331e3e;
}
:root .color-charcoal {
  color: #331e3e;
}
:root .bg-sand {
  background-color: #f2f2f2;
}
:root .color-sand {
  color: #f2f2f2;
}
:root .bg-vylet {
  background-color: #331e3e;
}
:root .bg-zines-button-color {
  background-color: #ff7f00;
}

:root .bg-bitdoodler-button-color {
  background-color: #8711ae;
}


:root .bg-flyer-button-color {
  background-color: #81a32c ;
}

:root .bg-printies-button-color {
  background-color: #474747 ;
}

:root .bg-membership-button-color {
  background-color: #4b3cd0 ;
}

:root .color-vylet {
  color: #331e3e;
}
:root .bg-fuchsia {
  background-color: #6c3f83;
}
:root .color-fuchsia {
  color: #6c3f83;
}

:root .color-crimson-red {
  color: #990000;
}

:root .color-bright-green {
  color: #0a7c0a;
}

:root .bg-lavender {
  background-color: #ecd1fa;
}
:root .color-lavender {
  color: #ecd1fa;
}
:root .bg-zeo {
  background-color: #6d4c93;
}
:root .color-zeo {
  color: #6d4c93;
}
:root .bg-uno {
  background-color: #e376b6;
}
:root .color-uno {
  color: #e376b6;
}
:root .bg-duo {
  background-color: #f0d175;
}
:root .color-duo {
  color: #f0d175;
}
:root .bg-tre {
  background-color: #75f0db;
}
:root .color-tre {
  color: #75f0db;
}
:root .bg-accent-gray {
  background-color: #C0C0C0;
}
:root .color-accent-gray {
  color: #C0C0C0;
}
:root .bg-accent-pink {
  background-color: #DD8DB8;
}
:root .color-accent-pink {
  color: #DD8DB8;
}
:root .bg-accent-red {
  background-color: #DA7979;
}
:root .color-accent-red {
  color: #DA7979;
}
:root .bg-accent-orange {
  background-color: #E99D74;
}
:root .color-accent-orange {
  color: #E99D74;
}
:root .bg-accent-yellow {
  background-color: #ECE57F;
}
:root .color-accent-yellow {
  color: #ECE57F;
}
:root .bg-accent-green {
  background-color: #A7E2CA;
}
:root .color-accent-green {
  color: #A7E2CA;
}
:root .bg-accent-teal {
  background-color: #A7E2CA;
}
:root .color-accent-teal {
  color: #A7E2CA;
}
:root .bg-accent-blue {
  background-color: #A6D7DD;
}
:root .color-accent-blue {
  color: #A6D7DD;
}
:root .bg-accent-purple {
  background-color: #A99DC7;
}
:root .color-accent-purple {
  color: #A99DC7;
}
:root .bg-yeet {
  background-color: linear-gradient(to bottom right, #D99AB5, #A054B1);
}
:root .color-yeet {
  color: linear-gradient(to bottom right, #D99AB5, #A054B1);
}
:root .bg-sparkly {
  background-color: linear-gradient(to bottom right, #FFEF00, #E376B6);
}
:root .color-sparkly {
  color: linear-gradient(to bottom right, #FFEF00, #E376B6);
}
:root .bg-hover-bg {
  background-color: rgba(120, 60, 120, 0.1);
}
:root .color-hover-bg {
  color: rgba(120, 60, 120, 0.1);
}

:root {
  --blockquote-background: rgba(128, 128, 128, .35);
  --page-background-light: var(--sand);
  --text-color-light: var(--charcoal);
  --header-text-color-light: var(--charcoal);
  --page-background-dark: var(--fuchsia);
  --text-color-dark: var(--lavender)
  --header-text-color-dark: var(--lavender);
}

:root {
  --page-background: var(--page-background-light);
  --text-color: var(--text-color-light);
  --header-text-color: var(--header-text-color-light);
}
:root body {
  --page-background: var(--page-background-light);
  --text-color: var(--text-color-light);
  --header-text-color: var(--header-text-color-light);
}
:root body.force-color-scheme-light {
  --page-background: var(--page-background-light);
  --text-color: var(--text-color-light);
  --header-text-color: var(--header-text-color-light);
}
@media (prefers-color-scheme: light) {
  :root body {
    --page-background: var(--page-background-light);
    --text-color: var(--text-color-light);
    --header-text-color: var(--header-text-color-light);
  }
}
:root body.force-color-scheme-dark {
  --page-background: var(--page-background-light);
  --text-color: var(--text-color-light);
  --header-text-color: var(--header-text-color-light);
}
@media (prefers-color-scheme: dark) {
  :root body {
    --page-background: var(--page-background-light);
    --text-color: var(--text-color-light);
    --header-text-color: var(--header-text-color-light);
  }
}

:root {
  --transition: all 350ms ease-in-out;
  --transition-linear: all 350ms linear;
  --transition-hover: all 150ms cubic-bezier(0.315, 0.61, 0.355, 1);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 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;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  cursor: pointer;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 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.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--white);
  background: var(--fuchsia);
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--white);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--page-background);
  background-attachment: fixed;
  font-size: var(--font-size);
  line-height: var(--line-height);
  margin: 0 auto;
  min-height: 100%;
  min-width: 100%;
}
body.animate-theme-change {
  transition: background 500ms ease-in, color 500ms ease-in;
}

.content {
  font-family: var(--content-font);
  margin: auto;
}

header, section, footer {
  position: relative;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

img#welcome {
  vertical-align: sub;
}

img, iframe {
  max-width: 100%;
}

figcaption {
  display: block;
  font-size: 0.75em;
  line-height: 1.25rem;
  padding: 0.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--header-font);
  font-weight: 800;
}

h1.title {
  font-weight: 900;
  font-size: 3.25em;
  line-height: 1.25;
  /* text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.09); */
  -webkit-text-stroke: 1px rgb(0, 0, 0);
}

h1.title:hover {
    /* -webkit-text-stroke: #000;
    font-size: 3.5em; /* Slightly larger font size */
    transition: font-size 0.6s ease; */
}


h1 {
  font-weight: 900;
  font-size: 2.75em;
  line-height: 1.25;
}

h2 {
  font-weight: 900;
  font-size: 1.75em;
  line-height: 1.15384615;
}

h3 {
  font-size: 1.45em;
  line-height: 1.13636364;
}

h4 {
  font-size: 1.125em;
  line-height: 1.11111111;
}

h5 {
  font-size: 1em;
  line-height: 1.25;
}

h1 .direct-link, h2 .direct-link, h3 .direct-link, h4 .direct-link, h5 .direct-link {
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414' xmlns='http://www.w3.org/2000/svg' aria-label='link' viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' fill='currentColor' width='48' height='48' title='link'%3E%3Cpath d='M16.693,16.664c0.376,-0.375 1.001,-0.413 1.377,-0.038l0.083,0.084c0.358,0.357 0.386,0.93 0.032,1.291c-0.026,0.026 -0.051,0.052 -0.077,0.078c-0.867,0.866 -1.671,1.438 -2.514,1.655c0,0 -0.001,0 -0.001,0c-0.078,0.02 -0.157,0.037 -0.236,0.051c0,0 0,0 0,0c-0.802,0.142 -1.646,-0.036 -2.616,-0.582l0,0c-0.907,-0.511 -1.923,-1.343 -3.119,-2.539c-3.959,-3.959 -3.939,-5.959 -1.414,-8.485c2.526,-2.525 4.526,-2.545 8.485,1.414c0.439,0.439 0.828,0.853 1.171,1.247c0.102,0.117 -0.009,0.3 -0.162,0.28c0,0 0,0 -0.001,0c-0.559,-0.074 -1.083,-0.035 -1.58,0.094c-0.299,0.078 -0.624,0.012 -0.842,-0.206c-1.958,-1.958 -3.035,-2.492 -3.63,-2.571c-0.366,-0.049 -0.902,0.032 -2.027,1.156c-1.124,1.125 -1.205,1.661 -1.156,2.027c0.079,0.595 0.613,1.672 2.571,3.63c0.432,0.433 0.822,0.796 1.173,1.1c0,0 0,0 0,0c0.046,0.04 0.091,0.079 0.136,0.117c0,0 0,0 0,0c0.841,0.712 1.45,1.073 1.891,1.24c0,0 0,0 0,0c0.166,0.062 0.308,0.098 0.429,0.114c0,0 0,0 0,0c0.367,0.049 0.903,-0.032 2.027,-1.157Zm3.07,-1.099c-0.912,-0.79 -1.563,-1.181 -2.027,-1.357c0,0 0,0 0,0c-0.166,-0.063 -0.308,-0.098 -0.43,-0.114c0,0 0,0 0,0c-0.367,-0.049 -0.902,0.032 -2.027,1.156c-0.375,0.376 -1.001,0.414 -1.376,0.038l-0.083,-0.083c-0.358,-0.358 -0.387,-0.931 -0.032,-1.291c0.025,-0.026 0.051,-0.052 0.077,-0.078c0.866,-0.866 1.671,-1.438 2.514,-1.655l0,0c0.873,-0.225 1.786,-0.07 2.853,0.531c0,0 0,0 0,0c0.906,0.51 1.923,1.343 3.118,2.538c3.96,3.96 3.94,5.96 1.414,8.486c-2.525,2.525 -4.525,2.545 -8.485,-1.415c-0.438,-0.438 -0.828,-0.852 -1.171,-1.246c-0.102,-0.117 0.009,-0.301 0.163,-0.28c0.559,0.074 1.083,0.035 1.581,-0.094c0.299,-0.078 0.623,-0.012 0.841,0.206c1.958,1.958 3.035,2.492 3.63,2.571c0.367,0.049 0.903,-0.032 2.027,-1.157c1.125,-1.124 1.206,-1.66 1.157,-2.027c-0.079,-0.595 -0.613,-1.672 -2.571,-3.63c-0.433,-0.432 -0.822,-0.795 -1.173,-1.099Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 1em 1em;
  background-position: center;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  color: transparent !important;
  opacity: 0;
  transition: var(--transition-hover);
}
h1:hover .direct-link, h2:hover .direct-link, h3:hover .direct-link, h4:hover .direct-link, h5:hover .direct-link {
  opacity: 0.25;
}
h1:hover .direct-link:hover, h2:hover .direct-link:hover, h3:hover .direct-link:hover, h4:hover .direct-link:hover, h5:hover .direct-link:hover {
  opacity: 1;
  background-color: var(--hover-bg);
}

@media screen and (max-width: 610px) {
  h1 {
    font-size: 2em;
  }

  h1.title {
    font-size: 2em;
    line-height: 1.5;
    margin-top: 1.5em;
  }

  h2 {
    font-size: 1.5em;
    line-height: 1.15384615;
  }

  h3 {
    font-size: 1.25em;
    line-height: 1.13636364;
  }

  .hidden-phone {
    display: none !important;
    visibility: hidden !important;
  }
}
p, .tmpl-post li {
  max-width: var(--content-width);
  line-height: var(--line-height);
}

p.lead {
  font-size: 1.45rem;
}
@media screen and (max-width: 960px) {
  p.lead {
    font-size: 1.15rem;
  }
}

p.leader {
  font-size: 1.75rem;
}
@media screen and (max-width: 960px) {
  p.leader {
    font-size: 1.15rem;
  }
}

svg {
  vertical-align: bottom;
}

a[href] {
  color: inherit;
}

em, i {
  font-style: italic;
}

hr {
  border: none;
  height: 6px;
  background: currentColor;
  color: inherit;
  mask-image: url(../img/squiggly.svg);
  -webkit-mask-image: url(../img/squiggly.svg);
  opacity: 0.69;
  margin: 2em 0;
}
hr.no-margin {
  margin: 0;
}

blockquote {
  margin: 1em 0;
  padding: 1px 1em;
  border-radius: 0;
  background: var(--blockquote-background);
  border-radius: var(--border-radius);
}
blockquote.jumpto {
  margin: 0 -1em -1em !important;
  padding: 0.75em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
body .hidden-theme-dark, body .visible-theme-light, body.force-color-scheme-light .hidden-theme-dark, body.force-color-scheme-light .visible-theme-light {
  visibility: visible;
  display: inherit;
}
body .hidden-theme-light, body .visible-theme-dark, body.force-color-scheme-light .hidden-theme-light, body.force-color-scheme-light .visible-theme-dark {
  visibility: hidden;
  display: none;
}

body.force-color-scheme-dark .hidden-theme-dark, body.force-color-scheme-dark .visible-theme-light {
  visibility: hidden;
  display: none;
}
body.force-color-scheme-dark .hidden-theme-light, body.force-color-scheme-dark .visible-theme-dark {
  visibility: visible;
  display: inherit;
}

@media (prefers-color-scheme: dark) {
  body .hidden-theme-dark, body .visible-theme-light {
    visibility: hidden;
    display: none;
  }
  body .hidden-theme-light, body .visible-theme-dark {
    visibility: visible;
    display: inherit;
  }
}
container {
  display: block;
  position: relative;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--spacing-unit);
  padding-left: var(--spacing-unit);
  clear: both;
  box-sizing: content-box;
}

img.emoji, svg.emoji {
  display: inline-block;
  height: 1.15em;
  width: auto;
  vertical-align: sub;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

grid, .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, 215px [col-start]);
  column-gap: var(--spacing-unit);
  row-gap: var(--spacing-unit);
  grid-auto-flow: row dense;
  justify-content: center;
  margin-bottom: var(--spacing-unit);
}

.grid-gap-2 {
  column-gap: calc(var(--spacing-unit) * 2);
}

.grid-gap-2 {
  column-gap: calc(var(--spacing-unit) * 3);
}

.auto-cols-min {
  grid-auto-columns: min-content;
}

.auto-cols-max {
  grid-auto-columns: max-content;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.auto-rows-min {
  grid-auto-rows: min-content;
}

.auto-rows-max {
  grid-auto-rows: max-content;
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr);
}

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

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

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

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

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

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

.grid-cols-\[1fr\,700px\,2fr\] {
  grid-template-columns: 1fr 700px 2fr;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

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

@media screen and (max-width: 610px) {
  .grid-cols-1, .grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-6, .grid-cols-12 {
    display: block;
    grid-auto-rows: max-content;
  }
}
.nav {
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-item {
  display: inline-block;
}
.nav-item a, .nav-item p, .nav-item label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5em;
  padding: 0.25rem 0.75rem;
  margin: 0.25em 0.25rem 0.25em 0;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-hover);
}
@media screen and (max-width: 960px) {
  .nav-item a, .nav-item p, .nav-item label {
    padding: 0.15rem 0.5rem;
  }
}
.nav-item a, .nav-item label {
  cursor: pointer;
}
.nav-item a:hover, .nav-item label:hover {
  background-color: var(--hover-bg);
  text-decoration: none;
}

.nav-item a[href]:not(:hover) {
  text-decoration: none;
}

.nav-item-active {
  font-weight: 700;
  text-decoration: underline;
  color: var(--uno);
}

.nav-spacer {
  flex-grow: 1;
}

.home {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-right: 0.75em;
  position: relative;
}
.home a {
  display: inline-block;
  background-color: var(--uno);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 0.25rem 1rem;
  margin: 0.25em 0;
  box-shadow: 0 0 0 2px var(--lightgray);
}
.home a h1 {
  font-family: var(--body-font) !important;
  font-weight: bold !important;
}
@media screen and (max-width: 960px) {
  .home a {
    padding: 0.15rem 0.75rem;
  }
}
.home h1 {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0;
}
.home .beta-tag {
  display: none;
  position: absolute;
  right: 0px;
  bottom: 38px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  background: #FCBF71;
  color: black;
  padding: 0px 6px;
  font-weight: bold;
  border-radius: var(--border-radius);
}

.home :link:not(:hover) {
  text-decoration: none;
}

nav, header, footer {
  color: var(--header-text-color);
}

body.header-color-white .home a {
  background: rgba(0, 0, 0, 0.5);
}

body.bg-shade-darker::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(100, 100, 100, 0.2);
}

body.bg-shade-lighter::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.15);
}

body.bg-dipping-dots::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Edd-16w%3C/title%3E%3Cg id='dd-16w' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.1'%3E%3Ccircle id='Oval' fill='%23FFFFFF' cx='8' cy='8' r='2'%3E%3C/circle%3E%3Ccircle id='Oval' fill='%23FFFFFF' cx='16' cy='16' r='2'%3E%3C/circle%3E%3Ccircle id='Oval' fill='%23FFFFFF' cx='16' cy='0' r='2'%3E%3C/circle%3E%3Ccircle id='Oval' fill='%23FFFFFF' cx='0' cy='0' r='2'%3E%3C/circle%3E%3Ccircle id='Oval' fill='%23FFFFFF' cx='0' cy='16' r='2'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

#mobile-menu {
  visibility: hidden;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-phone {
  display: none;
}
.nav-phone label {
  background-color: rgba(120, 60, 120, 0.1);
}
.nav-phone label:hover, .nav-phone label:focus {
  background-color: rgba(120, 60, 120, 0.2);
}
@media screen and (max-width: 960px) {
  .nav-phone {
    display: flex;
  }
}

@media screen and (max-width: 960px) {
  .nav-main {
    display: none;
    background-color: var(--hover-bg);
    border-radius: var(--border-radius);
    padding: 10px;
  }
  .nav-main .home, .nav-main .nav-spacer {
    display: none;
  }

  #mobile-menu:checked ~ .nav-main {
    display: block;
  }
}
@media screen and (max-width: 630px) {
  .nav-footer {
    display: block;
    text-align: center;
  }
  .nav-footer nav-spacer {
    display: none;
  }
}
section {
  padding: calc(var(--spacing-unit)*3) 0;
}

.card {
  position: relative;
  margin: var(--spacing-unit) auto;
  padding: 1em;
  border-radius: var(--border-radius-lg);
}

tiles {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 215px [col-start]);
  grid-auto-rows: 215px;
  column-gap: var(--spacing-unit);
  row-gap: 4em;
  grid-auto-flow: row dense;
  justify-content: center;
  margin-bottom: calc(var(--spacing-unit) + 3.25em);
}
@media screen and (max-width: 610px) {
  tiles {
    grid-template-columns: repeat(auto-fill, 140px [col-start]);
    grid-auto-rows: 140px;
    row-gap: 4em;
  }
}
tiles > a {
  grid-column: auto/span 1;
  grid-row: auto/span 1;
  position: relative;
  text-decoration: none;
  transition: transform 150ms ease-in, box-shadow 150ms linear;
}
tiles > a tile {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  background-color: gray;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 331px) {
  tiles > a {
    grid-column: auto/span 1 !important;
  }
}
tiles > a.tile-shape-rectangle {
  grid-column: auto/span 2;
}
tiles > a.tile-shape-circle {
  grid-column: auto/span 1;
}
tiles > a.tile-shape-circle tile {
  border-radius: 2000px;
}
tiles > a h1, tiles > a h2, tiles > a h3 {
  position: absolute;
  top: 215px;
  left: 0;
  width: 100%;
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.1em;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-align: center;
  padding-top: 0.5em;
  line-height: 1em;
  color: var(--text-color);
  font-weight: 900;
}
tiles > a h1 span, tiles > a h2 span, tiles > a h3 span {
  font-weight: normal;
  font-size: 0.75em;
}
@media screen and (max-width: 610px) {
  tiles > a h1, tiles > a h2, tiles > a h3 {
    font-size: 1em;
    top: 150px;
    font-weight: bold;
  }
  tiles > a h1 span, tiles > a h2 span, tiles > a h3 span {
    display: none;
  }
}
tiles > a .draft-banner {
  position: absolute;
  top: 10px;
  right: -10px;
  font-family: Basic Sans, Basic Sans, basic-sans, system-ui, sans-serif;
  font-weight: normal;
  background: #FFEA56;
  color: black;
  transform: rotate(25deg);
  box-shadow: 3px 3px 0 2px rgba(50, 50, 50, 0.25);
  padding: 2px 10px;
  border-radius: 4px;
}
tiles > a:hover {
  transform: translateY(-10px);
}

grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 215px [col-start]);
  column-gap: var(--spacing-unit);
  row-gap: var(--spacing-unit);
  grid-auto-flow: row dense;
  justify-content: center;
  margin-bottom: var(--spacing-unit);
}
@media screen and (max-width: 610px) {
  grid {
    grid-template-columns: repeat(auto-fill, 140px [col-start]);
    grid-auto-rows: 140px;
    row-gap: 4em;
  }
}

.content grid {
  row-gap: 0 !important;
  margin-bottom: 0 !important;
}




@font-face {
  font-family: "Dynapuff", system-ui;
  src: url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.eot?v=1623846084084");
  src: url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.eot?#iefix") format("embedded-opentype"), url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.woff2") format("woff2"), url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.woff") format("woff"), url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.ttf") format("truetype"), url("https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3/5063436c80bce872513b356b13136fe8.svg#BasicSansAlt-Black") format("svg");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
}
#heyo {
  position: absolute;
  display: inline-block;
  height: 300px;
  width: auto;
  float: left;
}

#arrow {
  position: absolute;
  height: 300px;
  width: auto;
  right: 0;
  bottom: -80px;
}

header {
  padding: calc(var(--spacing-unit) * 2) 0;
}
.post-header {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.post-header p {
  margin-left: auto;
  margin-right: auto;
}

.more-sites {
  color: white;
  padding: 0;
  text-align: center;
}
.more-sites p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.box {
  max-width: var(--box-width);
  background: var(--white);
  color: var(--text-color);
  padding: 1em;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-unit);
}

.box-of-tiles {
  max-width: 1080px;
  padding: 60px 60px 120px; /* Reduced bottom padding */
  border-radius: 60px;
}
.box-of-tiles-zines {
  max-width: 1080px;
  padding: 60px 60px 30px; /* Reduced bottom padding */
  border-radius: 60px;
}
.box-of-tiles-flyers {
  max-width: 1080px;
  margin-top: 30px;
  padding: 60px 60px 30px; /* Reduced bottom padding */
  border-radius: 60px;
}
.box-of-tiles-printies {
  max-width: 1080px;
  margin-top: 30px;
  padding: 60px 60px 30px; /* Reduced bottom padding */
  border-radius: 60px;
}
@media screen and (max-width: 960px) {
  .box-of-tiles {
    max-width: 600px;
  }
}
@media screen and (max-width: 610px) {
  .box-of-tiles {
    padding: 30px 8px 60px;
    border-radius: 40px;
  }
}

.boxish {
  margin: auto;
  border-radius: var(--border-radius);
  border: none;
  text-align: center;
  overflow: hidden;
  margin-bottom: var(--spacing-unit);
  width: 100%;
  height: auto;
  max-width: 100%;
}
.boxish.tiktok-embed {
  background-color: var(--white);
}
blockquote.boxish {
  min-height: calc(100% - var(--spacing-unit));
  padding: 0 !important;
}

.box, tile, .card, .letter {
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.1));
}

.content > *:first-child, .box > *:first-child {
  margin-top: 0;
}
.content > *:last-child, .box > *:last-child {
  margin-bottom: 0;
}

.letter {
  margin: calc(var(--spacing-unit) * 2) auto;
  max-width: calc(var(--box-width) + var(--letter-border-width));
  background: white;
  position: relative;
  border: 2px solid var(--letter-accent-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.letter .letter-header {
  background: var(--letter-accent-color);
  margin-top: calc(-1 * var(--letter-border-width));
  margin-left: calc(-1 * var(--letter-border-width));
  margin-right: calc(-1 * var(--letter-border-width));
  color: white;
  text-align: center;
  padding: calc(var(--spacing-unit) * 2.4) var(--letter-border-width) 10px;
}
.letter .letter-header time {
  text-transform: lowercase;
}
.letter .letter-header h1 {
  margin: 0;
}
.letter::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - var(--letter-border-width));
  height: calc(100% - var(--letter-border-width));
  border: 80px solid var(--letter-accent-color);
  z-index: 69;
  pointer-events: none;
  border-image-source: repeating-linear-gradient(-45deg, var(--letter-accent-color), var(--letter-accent-color) 24px, transparent 24px, transparent 44px);
  border-image-slice: 50;
}
.letter::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - var(--letter-border-width));
  height: calc(100% - var(--letter-border-width));
  border: 2px solid var(--letter-accent-color);
  z-index: 59;
  pointer-events: none;
}
.letter .letter-lip {
  color: var(--letter-accent-color);
  width: 100%;
  display: block;
  height: 60px;
  margin: 0;
}
.letter .content {
  margin: var(--letter-border-width);
  padding-bottom: var(--spacing-unit);
  font-family: var(--body-font);
}

.letterlist a {
  position: relative;
  display: block;
  text-decoration: none;
  transition: var(--transition-hover);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-unit) / 2);
}
.letterlist a h1, .letterlist a h2, .letterlist a h3 {
  line-height: 1em;
  margin: 0;
  text-decoration: underline;
}
.letterlist a:hover {
  background: var(--hover-bg);
}
.letterlist .letter-divider {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.letterlist .letter-divider:last-of-type {
  display: none;
}

.button {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.5em;
  padding: 0.25rem 1rem;
  margin: 0.25em;
  border: 4px solid;
  line-height: 2em;
  vertical-align: middle;
  border-radius: 50px;
  transition: var(--transition-hover);
  font-weight: bold;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.25);
}
.button:hover {
  transform: translateX(-2px) translateY(-2px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.25);
}
.button:focus {
  transform: translateX(2px) translateY(2px);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25);
}

yeet {
  display: inline-block;
  background: inherit;
  background: var(--yeet);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

sparkly {
  display: inline-block;
  background: inherit;
  background: var(--sparkly);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-old-website {
  position: relative;
}
@media screen and (min-width: 610px) {
  .card-old-website p {
    max-width: 45%;
  }
  .card-old-website img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50%;
  }
}

:root {
  --border-width:4px;
  --yellow:yellow;
}

.zine {
  display: inline-block;
  position: relative;
  border: var(--border-width) solid #000;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  background: #fff;
  margin-top: 2em;
}

.zine::after, .zine::before {
  content: " ";
  position: absolute;
  border: var(--border-width) solid #000;
  top: calc(var(--border-width) + 1px);
  bottom: calc(var(--border-width) + 1px);
  left: calc(var(--border-width) + 1px);
  right: calc(var(--border-width) + 1px);
  z-index: -1;
  transition: all 450ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background: #fff;
}

.zine img {
  max-height: 400px;
}

.zine .new {
  position: absolute;
  top: -25px;
  right: 10px;
  background: var(--yellow);
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border: var(--border-width) solid #000;
  border-radius: 50%;
  transform: rotate(20deg);
  font-weight: 700;
}

.zine-lg {
  max-width: 80%;
}

.zine.horizontal {
  transform: SkewX(-5deg);
  border-right: 0;
}

.zine.zine.horizontal img {
  border-right: var(--border-width) solid #000;
}

.zine.horizontal::after, .zine.horizontal::before {
  transform: SkewX(10deg) translateX(-5px);
  transform-origin: top left;
  top: calc(-1 * var(--border-width));
}

.zine.horizontal::before {
  transform: SkewX(10deg) translateX(5px);
}

.zine.horizontal:hover {
  transform: SkewX(-10deg) SkewY(2deg) translateY(-20px);
  z-index: 99;
}

.zine.horizontal:hover::after {
  transform: SkewX(20deg) translateX(-5px);
}

.zine.horizontal:hover::before {
  transform: SkewX(20deg) translateX(5px);
}

.zine.vertical {
  transform: SkewY(5deg);
  transform-origin: bottom left;
  border-top: 0;
}

.zine.zine.vertical img {
  border-top: var(--border-width) solid #000;
}

.zine.vertical::after, .zine.vertical::before {
  transform: SkewY(-10deg) translateY(-5px);
  transform-origin: bottom left;
  left: calc(-1 * var(--border-width));
}

.zine.vertical::after {
  transform: SkewY(-10deg) translateY(5px);
}

.zine.vertical:hover {
  transform: SkewY(5deg) translateY(-15px);
  z-index: 99;
}

.zine.vertical:hover::before {
  transform: SkewY(-15deg) translateY(-5px);
}

.zine.vertical:hover::after {
  transform: SkewY(-15deg) translateY(5px);
}

.wz-demo-1 .zine-holder:first-of-type {
  transform: rotate(-6deg) scale(0.8);
  transform-origin: center;
}
.wz-demo-1 .zine-holder:last-of-type {
  transform: rotate(6deg) scale(0.8);
  transform-origin: center;
}
.wz-demo-2 .zine-holder:first-of-type {
  transform: rotate(-2deg) scale(0.8);
  transform-origin: center;
}

@media screen and (max-width: 960px) {
  .did-logo {
    transform: scale(0.66);
    max-width: 900px;
    transform-origin: center left;
    margin: auto;
  }
}
@media screen and (max-width: 610px) {
  .did-logo {
    transform: scale(0.4);
  }
}

.bg-did {
  background-image: url(https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3%2FLeaf Pattern Green Darker Filled Repeatable -squashed.jpg?v=1625034716062);
  background-size: 800px;
}
.bg-did img.boxish {
  border: 8px solid white;
}

.did-demo-blob svg {
  animation: blob 1.5s cubic-bezier(0.37, 0, 0.63, 1) 0.3s infinite alternate;
  transform-origin: center left;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.1));
}

.bg-hc {
  background-image: url(https://cdn.glitch.com/d3e253ff-871d-442c-988d-a70ce0de1dc3%2Fhackclub-pattern%402x.png?v=1625098190777);
  background-size: 460px 336px;
  background-color: #D15B5B;
}

@keyframes blob {
  from {
    transform: rotate(0.3deg) scale(1);
  }
  to {
    transform: rotate(-0.3deg) scale(0.98);
  }
}
.nav-wavy nav, .header-color-white nav {
  display: table;
  position: relative;
  width: 100%;
  background-color: var(--white);
  color: var(--text-color);
  background-repeat: repeat-x;
}
.nav-wavy nav hr, .header-color-white nav hr {
  display: none;
}
.nav-wavy nav ul, .header-color-white nav ul {
  margin-bottom: 0;
}
.nav-wavy nav:after, .header-color-white nav:after {
  content: " ";
  position: absolute;
  height: 55px;
  width: 100%;
  top: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='536' height='56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M513.654 32.773c-6.794 2.842-13.287 5.873-19.402 9.188-13.682 7.192-28.175 11.666-42.955 13.26-21.133 2.925-42.468-2.435-61.074-15.344-5.284-3.22-11.324-6.157-17.74-8.525-6.532-2.594-13.415-3.496-20.233-2.652a61.679 61.679 0 00-15.098 4.073c-6.795 2.842-13.136 5.873-19.176 9.188-13.682 7.192-28.175 11.666-42.955 13.26-21.133 2.925-42.468-2.435-61.074-15.344-5.284-3.22-11.324-6.157-17.74-8.525-6.532-2.594-13.415-3.496-20.233-2.652a61.679 61.679 0 00-15.099 4.073c-6.794 2.842-13.135 5.873-19.175 9.188-13.682 7.192-28.175 11.666-42.955 13.26-21.107 2.893-42.411-2.466-60.999-15.344-5.284-3.22-11.323-6.062-17.74-8.525C16.23 29.742 9.436 28.784 0 28.5V0h536v28.5c-7.578-.015-15.114 1.433-22.346 4.273z' fill='%23FFFFFF' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: repeat-x;
  background-position: top center;
  background-size: contain;
}

.bg-queerjs {
  background-image: url(../svg/illust/queerjs-marquee-static.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*# sourceMappingURL=index.css.map */
