html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: Macula Solid;
  src: url("macula-solid-v10.6cf14831.woff") format("woff");
}

:root {
  --perspective-dist: 200px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

html {
  font-size: 16px;
}

main {
  padding: 1rem;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  display: block;
  position: relative;
}

header {
  justify-content: space-between;
  display: flex;
}

.pronouns {
  padding-left: .25rem;
}

h1, h3 {
  margin-bottom: .5rem;
  font-family: Macula Solid, Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace;
}

h1 {
  font-size: 2rem;
}

h3 {
  margin-top: 1rem;
  font-size: 1.75rem;
  line-height: 1.75rem;
}

strong {
  font-weight: bold;
}

button {
  background: none;
  height: 2.75rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.5rem;
  list-style-type: disclosure-closed;
}

ol {
  padding-left: 2rem;
  list-style-type: lower-greek;
}

.reading-text {
  flex-grow: 1;
  margin: .25rem 0 0;
  line-height: 1.5rem;
}

.list-sections {
  grid-template-columns: 1fr;
  column-gap: 1.5rem;
  display: grid;
}

.contact-details {
  margin-bottom: 0;
  padding-left: .25rem;
}

.samples {
  margin-top: 1rem;
}

@media (width >= 768px) {
  main {
    justify-content: space-between;
    display: flex;
    position: relative;
  }

  header {
    display: block;
  }

  button {
    height: auto;
  }

  h3 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .reading-text {
    flex-grow: 1;
    margin: .25rem 2.5rem 0;
    line-height: 1.5rem;
  }

  .list-sections {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 2rem 0;
  }
}

@media (width >= 1024px) {
  h1 {
    font-size: 3rem;
  }
}

.background {
  background: linear-gradient(121deg, #5bcefa 0%, #f5a9b8 40%, #c8c8c8 50%, #f5a9b8 60%, #5bcefa 100%) 0 0 / 400% 400%;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  width: 100vw;
  height: 100vh;
  animation: 30s infinite gradient-anim;
  display: grid;
  position: fixed;
}

.hidden {
  display: none;
}

.bg-cell {
  opacity: .05;
  border: 2px solid #000;
}

.color-0 {
  background-color: #fcf434;
}

.color-1 {
  background-color: #fff;
}

.color-2 {
  background-color: #9c59d1;
}

.color-3 {
  background-color: #2c2c2c;
}

.rotation-0 {
  opacity: 0;
  animation: 10s linear infinite alternate-reverse rotation-0-animation;
}

.rotation-1 {
  opacity: 0;
  animation: 10s linear infinite alternate-reverse rotation-1-animation;
}

.rotation-2 {
  opacity: 0;
  animation: 10s linear infinite alternate-reverse rotation-2-animation;
}

.rotation-3 {
  opacity: 0;
  animation: 10s linear infinite alternate-reverse rotation-3-animation;
}

.tf-origin-0 {
  transform-origin: 0 0;
}

.tf-origin-1 {
  transform-origin: 25% 25%;
}

.tf-origin-2 {
  transform-origin: 50%;
}

.tf-origin-3 {
  transform-origin: 75% 75%;
}

.tf-origin-4 {
  transform-origin: 100% 100%;
}

@keyframes rotation-0-animation {
  from {
    transform: perspective(var(--perspective-dist)) rotateX(45deg);
    opacity: .05;
  }

  to {
    opacity: .05;
    transform: perspective(var(--perspective-dist)) rotateX(-45deg);
  }
}

@keyframes rotation-1-animation {
  0% {
    transform: perspective(var(--perspective-dist)) rotateX(0deg);
    opacity: .05;
  }

  100% {
    opacity: .05;
    transform: perspective(var(--perspective-dist)) rotateX(90deg);
  }
}

@keyframes rotation-2-animation {
  from {
    transform: perspective(var(--perspective-dist)) rotateY(45deg);
    opacity: .05;
  }

  to {
    opacity: .05;
    transform: perspective(var(--perspective-dist)) rotateY(-45deg);
  }
}

@keyframes rotation-3-animation {
  0% {
    transform: perspective(var(--perspective-dist)) rotateY(0deg);
    opacity: .05;
  }

  100% {
    opacity: .05;
    transform: perspective(var(--perspective-dist)) rotateY(90deg);
  }
}

@keyframes gradient-anim {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

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