* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  background: #14101f;
  overflow: hidden;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Segoe UI Rounded', sans-serif;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#game {
  touch-action: none;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.35);
}
