* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; background: #1A1D23; }
#canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
#ui-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 10;
}
#ui-overlay > * { pointer-events: auto; }
#remix-footer {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #556;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  text-decoration: none;
  z-index: 20;
  pointer-events: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}
#remix-footer:hover {
  opacity: 1;
  color: #00E5FF;
}