@font-face {
  font-family: "TTW";
  font-weight: 300;
  src: url("./assets/titillium_regular.ttf") format("truetype");
}
@font-face {
  font-family: "TTW";
  font-weight: 700;
  src: url("./assets/titillium_black.ttf");
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: "TTW";
}

footer {
  position: fixed;
  color: #fff;
  bottom: 1vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  opacity: 0.2;
}

.pixelate {
  image-rendering: pixelated;
}

.shards {
  display: flex;
  flex-flow: row nowrap;
  height: 100vh;
  color: #fff;
}

.lift {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  transform: translateZ(4vw);
}

.logo {
  position: fixed;
  top: min(50%, 50vw);
  left: 50%;
  width: min(50vw, 76vh);
  opacity: 1;
  user-select: none;
  pointer-events: none;
  perspective: 1800px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition: opacity 0.64s cubic-bezier(0.8, -0.04, 0.32, 1), transform 0.24s ease, width 0.64s cubic-bezier(0.8, -0.04, 0.32, 1);
}
.logo img {
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.back {
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.4s ease;
  position: fixed;
  left: min(2vw, 3vh);
  top: min(2vw, 3vh);
  min-width: 4em;
  width: max(8vw, 12vh);
  margin: 0;
  padding: 0;
}
.back img {
  image-rendering: pixelated;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.shards:has(.shard:target) .shard .logo {
  opacity: 0;
  width: 4800vw;
  transition: opacity 0.64s cubic-bezier(0.8, -0.04, 0.32, 1), transform 0.24s ease, width 0.64s cubic-bezier(0.8, -0.04, 0.32, 1);
}
.shards:has(.shard:target) .curtain {
  opacity: 0;
}
.shards:has(.shard:target) .curtain img {
  opacity: 0;
  transition: opacity 0.48s 0.06s cubic-bezier(0.8, -0.04, 0.32, 1), transform 0.48s 0.06s cubic-bezier(0.8, -0.04, 0.32, 1), min-height 0.48s 0.06s cubic-bezier(0.8, -0.04, 0.32, 1), min-width 0.48s 0.06s cubic-bezier(0.8, -0.04, 0.32, 1);
  min-height: 480vh;
  min-width: 480vh;
}
.shards:has(.shard:target) .starter {
  display: none;
}

.curtain {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: 1.12s ease;
  pointer-events: none;
  user-select: none;
}
.curtain img {
  image-rendering: pixelated;
  position: fixed;
  min-height: 100vh;
  min-width: 100vw;
  top: 50vh;
  left: 50vw;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.shard {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: black;
  clip-path: inset(-0.04%);
  transition: 0.44s ease;
}
.shard .starter {
  position: fixed;
  width: 100%;
  height: 100%;
}
.shard .starter div {
  width: 100%;
  height: 100%;
}
.shard .content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100vw;
  padding: max(8vw, 12vh) 5vw;
  box-sizing: border-box;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.shard .content * {
  max-width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .shard:hover {
    flex: 1.8;
  }
}
.shard.art {
  background-color: #070505;
}
.shard.art .curtain {
  box-shadow: inset 0 0 1200px rgba(255, 84, 0, 0.4);
}
.shard.art > .logo img {
  filter: drop-shadow(0px 0px 14px #ff5400);
}
.shards:has(.shard.art:hover) .logo {
  transform: translate(calc(-50% + -1.8vw), calc(-50% + 0vw)) rotateX(0deg) rotateY(12deg);
}

.shard.code {
  background-color: #0d0918;
}
.shard.code .curtain {
  box-shadow: inset 0 0 1200px rgba(231, 37, 233, 0.4);
}
.shard.code > .logo img {
  filter: drop-shadow(0px 0px 14px #e725e9);
}
.shards:has(.shard.code:hover) .logo {
  transform: translate(calc(-50% + 0vw), calc(-50% + 0vw)) rotateX(0deg) rotateY(0deg);
}

.shard.music {
  background-color: #090f18;
}
.shard.music .curtain {
  box-shadow: inset 0 0 1200px rgba(0, 187, 255, 0.4);
}
.shard.music > .logo img {
  filter: drop-shadow(0px 0px 14px #00bbff);
}
.shards:has(.shard.music:hover) .logo {
  transform: translate(calc(-50% + 1.8vw), calc(-50% + 0vw)) rotateX(0deg) rotateY(-12deg);
}

.shard:target {
  flex: 0 0 100vw;
  overflow-y: visible;
}
.shards:has(.shard:target:hover) .logo {
  transform: translate(calc(-50% + 0vw), calc(-50% + 0vw)) rotateX(0deg) rotateY(0deg);
}

.shard:target .back {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}
.shard:target .content {
  opacity: 1;
}
@keyframes Kuroko {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  72% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes Fatboy {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes Kouzaku {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.shard main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.shard main > div {
  width: 500px;
  max-width: 100vw;
  flex: 1 0 auto;
}
.shard section {
  --fg: #ff28ff;
  --bg: #701970;
  color: #fff;
  margin: 2em;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.shard section::selection,
.shard section *::selection {
  background-color: var(--fg);
  color: #000;
}
.shard section > * {
  opacity: 0;
  animation: Kouzaku 0.3s ease-out 0.36s forwards;
}
.shard section h1 {
  --len: 5em;
  margin: 0;
  font-size: 2em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: Kouzaku 0.3s ease-out 0.26s forwards;
}
.shard section h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: var(--len);
  height: 1em;
  top: 0;
  left: 1em;
  background: var(--bg);
  pointer-events: none;
}
.shard section h1::after {
  content: "";
  position: absolute;
  width: var(--len);
  height: 3px;
  top: 100%;
  left: 0;
  background-color: var(--fg);
  pointer-events: none;
  transition: width 0.2s ease-out;
}
.shard section h1:hover::after, section:hover .shard section h1::after {
  width: calc(var(--len) + 0.4em);
  transition: width 0.3s ease-out;
}
.shard section:not(:hover) {
  opacity: 0.8;
}
.shard a {
  color: inherit;
  text-decoration: inherit;
}
.shard .push,
.shard .status {
  position: relative;
  display: block;
  margin: 1em 0;
  padding: 0.5em;
  line-height: 1.2em;
  z-index: 1;
}
.shard .push {
  color: #fff;
  border: 1px solid var(--fg);
  padding-left: 3.5em;
}
.shard .push img {
  position: absolute;
  left: 1.75em;
  top: 50%;
  width: 2.5em;
  max-height: 2.5em;
  transform: translate(-50%, -50%);
}
.shard .push h2 {
  position: relative;
  margin: 0;
  top: 1px;
  font-size: 1.25em;
  letter-spacing: 1px;
}
.shard .push p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.shard .push:hover {
  background-color: var(--fg);
  color: #000;
}
.shard .push:hover img {
  filter: invert(1);
}
.shard .push:hover .reveal {
  opacity: 1;
}
.shard .push .reveal {
  opacity: 0;
  transition: opacity 0.024s ease;
}
.shard .push:active {
  background-color: #fef;
  border-color: #fef;
  left: -2px;
  top: 4px;
}
.shard .push.copied:active {
  background-color: #77ff77;
  border-color: #77ff77;
}
.shard .status {
  color: #fff;
  border: 1px solid var(--bg);
  margin: 1.2em 0 0 0;
  padding: 0.4em 1em;
}
.shard .status h2 {
  position: relative;
  margin: 0;
  top: 1px;
  font-size: 1.25em;
  letter-spacing: 1px;
}
.shard .status p {
  margin: 0;
  letter-spacing: 0.6px;
}
.shard .status::before {
  content: "";
  background-color: #ffc977;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: calc(100% - 1.2em);
  width: 1em;
  height: 2em;
}
.shard .status.on::before {
  background-color: #77ff77;
}
.shard .status.off::before {
  background-color: #ff4747;
}
.shard .item {
  position: relative;
  margin: 2.8em 0 0 1em;
  padding: 1.2em 1em 0.9em 1em;
  width: calc(100% - 3em);
}
.shard .item h2 {
  color: #000;
  width: min-content;
  position: absolute;
  font-size: 1.4em;
  margin: 0;
  left: -1.1em;
  top: -0.9em;
  padding: 0 1em 0 0.5em;
  background-color: var(--fg);
  transform: rotate(-4deg);
}
.shard .item h2::selection {
  background-color: #28ff28;
}
.shard .item p {
  margin: 0;
}
.shard .item a {
  color: var(--fg);
}
.shard .item img {
  width: calc(90% - 2em);
  margin: 0.8em;
}
.shard .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--fg);
  z-index: -1;
}
.shard .item > div {
  display: flex;
  flex-flow: row nowrap;
  position: absolute;
  left: 100%;
  top: 0;
  width: min-content;
  height: min-content;
  transform: translate(-100%, -50%);
}
.shard .item > div a {
  color: var(--fg);
  background-color: #0d0918;
  position: relative;
  width: min-content;
  height: 100%;
  margin: 0 1em 0 0;
  padding: 0 0.5em;
  align-items: center;
}
.shard .item a:hover {
  text-decoration: underline;
}
.shard .mc-name,
.shard .mc-version,
.shard .mc-motd,
.shard .mc-players,
.shard .mc-slash {
  font-family: "MC";
}
.shard .mc-version,
.shard .mc-players {
  position: absolute;
  transform: translate(-100%, -50%);
  left: calc(100% - 2.2em);
}
.shard .mc-name {
  color: #ffffff;
}
.shard .mc-version {
  color: #555555;
  top: 70%;
}
.shard .mc-motd {
  color: #808080;
}
.shard .mc-players {
  color: #aaaaaa;
  top: 40%;
}
.shard .mc-slash {
  color: #555555;
}

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