@font-face {
  font-family: "Comic Sans MS";
  src: url("comic-sans-ms/comici.ttf");
}
header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px 20px;
}
header #site-title {
  flex-grow: 100;
}
header img {
  opacity: 0.5;
  transform: scaleX(-1);
}
header nav {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 10px 20px;
}

.italic {
  font-style: italic;
}

.faded {
  color: #BBB;
}

.spiraling {
  display: inline-block;
  background-image: linear-gradient(red, black);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: darkred;
  font-family: "Times New Roman", monospace;
  transform: scale(1, 1.5) translateY(-1px);
  letter-spacing: -1px;
}

.gay {
  background-image: none;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: white;
  animation: gay 6s infinite;
}

.shimmer {
  background-image: linear-gradient(-30deg, #fcfcc0 45%, #ffffff 50%, #fcfcc0 55%);
  background-size: 300%;
  color: #ffffff;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 12s infinite;
}

.speech-bubble {
  display: inline-block;
  padding: 0 10px;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  background-color: white;
  box-shadow: inset -2px -3px 8px -2px #23e8ff;
  color: black;
  animation: speech-bubble 2s infinite;
  animation-timing-function: ease-in-out;
}

a {
  display: inline-block;
  background-image: linear-gradient(#1ae580 20%, #23e8ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.5, 2, 1, 1);
  opacity: 0.8;
}
a.green {
  background-image: linear-gradient(#1ae580 20%, #23e8ff);
}
a.red {
  background-image: linear-gradient(#ff3344 35%, #ff35c2);
}
a.blue {
  background-image: linear-gradient(#00e0ff 50%, #5a1bc2);
}
a.instagram {
  background-image: linear-gradient(to right, #ee00de, #ffc500);
}
a.yellow {
  background-image: linear-gradient(#ffce2b 40%, #ff392b);
}
a.white {
  background-image: linear-gradient(#ddf2f3, #ddf2f3 55%, #3e4b53);
}
a:hover {
  opacity: 1;
}
a.accordion {
  transition: letter-spacing 0.2s cubic-bezier(0.5, 2, 1, 1);
}
a.accordion:hover {
  transform: none;
  letter-spacing: 1px;
}
a.grow:hover {
  transform: scale(1.1);
}

a.hop,
p a {
  transition: transform 0.4s cubic-bezier(0.5, 2, 1, 1);
}
a.hop:hover,
p a:hover {
  transform: translate(0, -1px);
}

li span.tip {
  color: #ddf2f3;
  font-size: 14px;
  opacity: 0.5;
  font-style: italic;
  white-space: nowrap;
}

.emoji {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  user-select: text;
  transition: transform 0.2s cubic-bezier(0.5, 2, 1, 1);
}
.emoji:hover[src*=heart] {
  animation: heartbeat 2s infinite;
}

a:hover .emoji {
  transform: rotate(-8deg);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  25% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position-x: 100%;
  }
  50% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: 0;
  }
}
@keyframes gay {
  0% {
    color: red;
  }
  10% {
    color: orange;
  }
  30% {
    color: yellow;
  }
  50% {
    color: green;
  }
  70% {
    color: blue;
  }
  90% {
    color: purple;
  }
  100% {
    color: red;
  }
}
@keyframes hop {
  50% {
    transform: translate(0, -2px);
  }
}
@keyframes speech-bubble {
  0% {
    transform: rotate(-2deg) translate(0, -0.7em);
  }
  50% {
    transform: rotate(-2deg) translate(0, -0.8em);
  }
  100% {
    transform: rotate(-2deg) translate(0, -0.7em);
  }
}
.i88x31 {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.i88x31 div {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.i88x31 div img {
  image-rendering: pixelated;
  max-height: 31px;
  max-width: 88px;
}
.i88x31 div a {
  display: inline-block;
  max-height: 31px;
  max-width: 88px;
  background: black;
  opacity: 1;
}
.i88x31 div a:hover {
  z-index: 1;
  animation: i88x31-hover 1s forwards;
  animation-timing-function: cubic-bezier(0.4, 1.6, 0.4, 1);
}

@keyframes i88x31-hover {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.25);
  }
}
.game-card-list {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.game-card-list > * {
  border: dotted #ddf2f3 1px;
}

.game {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  height: 100%;
  align-content: space-between;
  align-items: stretch;
  overflow: hidden;
  padding: 10px;
}
.game .title {
  grid-column: 1/span 2;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  margin: 0;
  font-size: 1.2em;
  line-height: 1;
}
.game .title .links {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.2em;
  line-height: 1;
}
.game img.icon {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 64px;
}
.game img.backdrop {
  z-index: -1;
  position: absolute;
  right: 0;
  width: 100%;
  opacity: 0.25;
  transform: translate(10%, -50%) rotate(4deg);
  filter: blur(1px) grayscale(100%);
  transition: 0.2s;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: -webkit-gradient(linear, right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

.game:hover img.backdrop {
  opacity: 1;
  filter: blur(1px);
}

.art-table-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.art-table-container > :nth-child(even) {
  background-color: rgba(100, 200, 145, 0.1);
}

.art-table {
  width: 100%;
  border: solid rgba(100, 200, 145, 0.1) 1px;
  padding: 10px;
}
.art-table th {
  border-bottom: solid #64c891 1px;
  text-align: left;
}
.art-table td {
  padding: 10px;
}
.art-table thead tr h2 {
  margin: 0;
  padding-bottom: 10px;
}
.art-table tbody tr > :first-child {
  width: 40px;
}
.art-table tbody tr > :last-child {
  white-space: nowrap;
  width: 1px;
  max-width: max-content;
}
.art-table tbody > :nth-child(even) {
  background-color: rgba(100, 200, 145, 0.1);
}
.art-table .open-button {
  cursor: pointer;
}

.art-modal {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  animation: blur-in 0.5s, fade-in 0.25s;
  cursor: pointer;
}
.art-modal .window {
  z-index: 102;
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 20px;
  flex: 0 0 auto;
  min-width: none;
  width: 100%;
  max-width: 640px;
  height: min-content;
  padding: 20px;
  border: solid 1px rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(160deg, #000805 50%, #003828);
  cursor: default;
}
.art-modal .window > * {
  width: 100%;
}
.art-modal .window img {
  width: 100%;
  height: auto;
}
.art-modal .art-header {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  font-size: 26px;
  line-height: 1;
  color: #ddf2f3;
}
.art-modal .window-buttons {
  z-index: 1000;
  position: absolute;
  right: -15px;
  top: -10px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: max-content;
  background: rgba(0, 8, 5, 0.6);
  transform: rotate(4deg);
}
.art-modal .window-buttons > button,
.art-modal .window-buttons > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  background-clip: initial;
  color: white;
  -webkit-text-fill-color: initial;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.5, 2, 1, 1);
}
.art-modal .window-buttons .minify {
  background-image: linear-gradient(#ddf2f3 10%, #3e4b53);
}
.art-modal .window-buttons .minify:hover {
  transform: rotate(-5deg);
}
.art-modal .window-buttons .new-tab {
  background-image: linear-gradient(#00e0ff 40%, #5a1bc2);
}
.art-modal .window-buttons .new-tab:hover {
  transform: scale(110%) translateY(-2px);
}
.art-modal .window-buttons .close {
  background-image: linear-gradient(#ff3344 50%, #ff35c2);
}
.art-modal .window-buttons .close:hover {
  transform: rotate(5deg);
}
.art-modal .caption {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  padding: 10px;
  border: dotted 1px rgba(255, 255, 255, 0.25);
  background: rgba(0, 8, 5, 0.3333333333);
}
.art-modal .caption .credits {
  background-color: rgba(100, 200, 145, 0.1);
}
.art-modal .caption .credits summary {
  margin: 0;
  padding: 10px;
  color: #64c891;
  font-weight: bold;
  cursor: pointer;
}
.art-modal .caption .credits ul {
  margin: 0;
  padding-left: 30px;
}
.art-modal .caption .credits ul li + li {
  margin-top: 8px;
}
.art-modal .caption .credits[open] {
  padding: 10px;
}
.art-modal .caption .credits[open] summary {
  margin-bottom: 10px;
  padding: 0 0 10px;
  border-bottom: solid #64c891 1px;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blur-in {
  from {
    backdrop-filter: blur(0px);
  }
  to {
    backdrop-filter: blur(2px);
  }
}

#expert-table {
  width: 100%;
  font-size: 0.8em;
  border-collapse: collapse;
}
#expert-table tr:nth-child(odd) {
  background: rgba(150, 255, 150, 0.04);
}
#expert-table tr:nth-child(odd) td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#expert-table tr:nth-child(odd) td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#expert-table td {
  padding: 5px;
  vertical-align: top;
}
#expert-table .date-cell {
  width: 0;
  max-width: max-content;
  padding-right: 10px;
}
#expert-table .date-tag {
  display: flex;
  white-space: nowrap;
}
#expert-table .title-cell {
  width: 100%;
}
#expert-table .title-cell div {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 8px;
}
#expert-table .title-cell a {
  flex-grow: 1;
  display: inline-block;
  opacity: 0.8;
  transition: 0.1s cubic-bezier(0.5, 2, 1, 1);
}
#expert-table .title-cell a:hover {
  padding-left: 1px;
  opacity: 1;
}

.expert-tag {
  padding: 1px 5px;
  font-size: 0.8em;
  border: solid 1px #3e4b53;
  border-radius: 5px;
  color: #ddf2f3;
}
.expert-tag.dr-dog {
  border-color: #ff6d4f;
  color: #ddf2f3;
}
.expert-tag.dr-dog span {
  color: #ff6d4f;
  font-weight: bold;
}
.expert-tag.fan-art {
  border-color: #23e8ff;
  color: #ddf2f3;
}
.expert-tag.fan-art span {
  color: #1ae580;
  font-weight: bold;
}
.expert-tag.commission {
  border-color: #ffce2b;
  color: #ddf2f3;
}
.expert-tag.commission span {
  color: #ffce2b;
  font-weight: bold;
}

.under-construction-disclaimer {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  background: black;
  cursor: help;
}
.under-construction-disclaimer .title-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  background: repeating-linear-gradient(45deg, #ffce2b, #ffce2b 20px, black 20px, black 40px);
  box-shadow: inset 0 0 0 1px #ffce2b;
  text-align: center;
}
.under-construction-disclaimer .title-container > * {
  margin: 0;
  padding: 2px 5px;
  background: black;
  border: solid 1px #ffce2b;
  font-size: 1em;
  line-height: 1;
}
.under-construction-disclaimer .title-container h2 {
  width: max-content;
  padding: 2px 10px;
  color: white;
}
.under-construction-disclaimer .title-container span {
  color: #ffce2b;
  font-weight: normal;
}
.under-construction-disclaimer p {
  padding: 10px;
  color: #ffce2b;
  border: dotted 1px #ffce2b;
  border-top: none;
  font-size: 0.8em;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  font-size: 18px;
  transition: font-size 0.5s cubic-bezier(0.4, 1.6, 0.4, 1);
}

@media (min-width: 640px) {
  html {
    font-size: 22px;
  }
}
body {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 640px;
  min-height: calc(100vh - 60px);
  overflow-x: hidden;
  background: #070f0d;
  background: linear-gradient(135deg, #02100c, #020e10, #01070b);
  color: #ddf2f3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body > * {
  width: 100%;
}

main {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  margin: 20px 0;
  padding: 0;
}
main #page-logo {
  max-width: 250px;
  margin: 0 auto;
  transform: translateY(-20px);
}

p {
  margin: 0;
}

hr {
  margin: 0;
  max-width: 700px;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, #1ae580, #23e8ff);
}
hr.big {
  margin: 0 -20px;
  width: calc(100% + 40px);
}
hr.small {
  max-width: 600px;
  margin-left: 20px;
  margin-right: 20px;
}
hr.dotted {
  border-bottom: 1px dotted #000;
  background: linear-gradient(#000 0 0) padding-box, linear-gradient(90deg, #1ae580, #23e8ff) border-box;
}

ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  margin: 0;
  padding-left: 0;
}
ul li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 20px;
}

footer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer * {
  max-width: max-content;
}
footer > a {
  letter-spacing: normal;
  transition: letter-spacing 0.1s;
}
footer p {
  font-size: 0.8em;
}
footer img.logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  opacity: 0.1;
}

/*# sourceMappingURL=toadley-space.css.map */