header {
  border-bottom: solid #64c891 1px;
  padding-top: 40px !important;
  margin-bottom: 30px;
}
header > .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
header > .wrapper > * {
  flex: 1 1 0px;
}
header > .wrapper > a {
  letter-spacing: 1px;
  color: #ffffff;
  text-align: left;
  transition: letter-spacing 0.2s, transform 0.2s;
}
header > .wrapper > a:hover {
  letter-spacing: 5px;
  transform: scale(1);
}
header > .wrapper > nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

footer {
  border-top: solid #64c891 1px;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer > * {
  max-width: max-content;
}
footer > a {
  letter-spacing: normal;
  transition: letter-spacing 0.1s;
}
footer > a:hover {
  transform: none;
  letter-spacing: 1px;
}
footer .amphibian {
  animation: gay 15s linear infinite;
  cursor: help;
  transition: 0.2s;
}
footer .amphibian:hover {
  font-size: 1.5em;
}

.italic {
  font-style: italic;
}

.faded {
  opacity: 0.75;
  transition: opacity 0.2s;
}
.faded:hover {
  opacity: 1;
}

.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;
}

@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;
  }
}
a {
  color: #64c891;
  text-decoration: none;
  background-image: linear-gradient(#64c891, #64c891 45%, #2bfff4);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.1s;
}
a.itch {
  color: #ff2b59;
  background-image: linear-gradient(#ff2b59, #ff2b59 55%, #ff2bed);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.catalog {
  color: #ffce2b;
  background-image: linear-gradient(#ffce2b, #ffce2b 55%, #ff392b);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.bsky {
  color: #28b0ff;
  background-image: linear-gradient(#28b0ff, #28b0ff 55%, #7a28ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.instagram {
  color: #ffffff;
  background-image: linear-gradient(to right, #ee00de, #ffc500);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.discogs {
  color: #ddf2f3;
  background-image: linear-gradient(#ddf2f3, #ddf2f3 55%, #3e4b53);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a:hover {
  transform: scale(1.1);
}

p > a {
  text-decoration: underline;
}

.game-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.game-card-list > * {
  padding-left: 10px;
  padding-right: 10px;
  border: solid rgba(100, 200, 145, 0.1) 1px;
}
.game-card-list > :nth-child(even) {
  background-color: rgba(100, 200, 145, 0.1);
}

.game-card {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.game-card > * {
  flex: 1 1 0px;
  min-width: 280px;
}
.game-card > h2 {
  flex: 1 1 auto;
  width: 100%;
  margin: 0px;
  padding: 10px 0px;
  border-bottom: solid #64c891 1px;
}
.game-card > h2 > a {
  margin-left: 10px;
  float: right;
}
.game-card > .game-description {
  display: inline-grid;
  height: min-content;
  gap: 10px;
}
.game-card > .game-description > * {
  margin: 0;
  height: max-content;
}
.game-card img {
  width: 100%;
  height: auto;
  background-color: #ffffff;
}

.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 {
  color: #64c891;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  background-image: linear-gradient(#64c891, #64c891 55%, #2bfff4);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-modal {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
  overflow: auto;
  background-color: rgba(7, 15, 13, 0.75);
  backdrop-filter: blur(2px);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  animation-name: blur-in;
  animation-duration: 0.8s;
}
.image-modal .close-button {
  z-index: 200;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.image-modal .middle {
  z-index: 300;
  flex: 0 0 auto;
  min-width: none;
  width: 100%;
  max-width: 800px;
  height: min-content;
  min-height: 0px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.image-modal .middle > * {
  width: 100%;
}
.image-modal .middle img {
  width: 100%;
  height: auto;
  animation-name: fade-in;
  animation-duration: 0.8s;
}
.image-modal .middle .credits {
  background-color: rgba(100, 200, 145, 0.1);
}
.image-modal .middle .credits summary {
  margin: 0;
  padding: 10px;
  color: #64c891;
  font-weight: bold;
  cursor: pointer;
}
.image-modal .middle .credits ul {
  margin: 0;
  padding-left: 30px;
}
.image-modal .middle .credits ul li + li {
  margin-top: 8px;
}
.image-modal .middle .credits[open] {
  padding: 10px;
}
.image-modal .middle .credits[open] summary {
  margin-bottom: 10px;
  padding: 0;
  padding-bottom: 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);
  }
}

html {
  font-size: 1.1em;
}

body {
  min-height: 100vh;
  background: #070f0d;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  background: linear-gradient(rgba(0, 54, 18, 0.137254902), rgba(37, 0, 54, 0.1529411765) calc(100% - 500px), rgba(0, 0, 0, 0.368627451)), url("/assets/images/noise2.png");
  display: flex;
  flex-flow: column;
  align-items: center;
}
body > * {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  box-sizing: border-box;
}

.i88x31 {
  margin-top: 60px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.i88x31 div {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 5px;
}
.i88x31 div img {
  image-rendering: pixelated;
}
.i88x31 div a:hover {
  transform: scale(1.1);
}

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