<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #121318;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

canvas {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#debug-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
}
#debug-controls label {
  display: inline-block;
  width: 150px;
  margin: 5px;
  text-align: right;
}
#debug-controls input {
  margin: 5px;
}

#effect-toggle {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 0;
  color: white;
  transform: translateX(-50%);
}
#effect-toggle .toggle ~ .emoji:before {
  content: "🙁";
}
#effect-toggle .toggle:checked ~ .emoji:before {
  content: "🤩";
}
#effect-toggle .toggle ~ label:before {
  content: "FX Off";
}
#effect-toggle .toggle ~ label:after {
  content: "FX On";
}

.emoji-toggle {
  position: relative;
  width: 60px;
  margin: 40px auto;
}
.emoji-toggle .well {
  display: block;
  background: #eee;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
}
.emoji-toggle .toggle {
  opacity: 0;
  border: 0;
  outline: none;
  height: 100%;
  width: 100%;
  background: transparent;
  position: absolute;
  cursor: pointer;
  z-index: 100;
}
.emoji-toggle .toggle ~ .emoji:before {
  position: absolute;
  left: 30%;
  margin-left: -1em;
  top: -15px;
  font-size: 40px;
  transition: 0.2s;
}
.emoji-toggle .toggle:checked ~ .emoji:before {
  left: 100%;
  margin-left: -1em;
}
.emoji-toggle .toggle ~ label {
  white-space: nowrap;
}
.emoji-toggle .toggle ~ label:before {
  position: absolute;
  right: 100%;
  margin-right: 3rem;
  top: 0;
}
.emoji-toggle .toggle ~ label:after {
  position: absolute;
  left: 100%;
  margin-left: 3rem;
  top: 0;
}</pre></body></html>