* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #5f5;
  background: #000;
  font-family: sans-serif;
  font-size: 10px;
}

canvas#canvas {
  cursor: none;
  outline: none;
  display: block;
}

.flex {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  display: flex;
}

#help-window {
  color: #5f5;
  background: #000;
  border: 2px dashed #5f5;
  width: 400px;
  height: 300px;
  padding: 4px;
  position: fixed;
  top: 1rem;
  left: 1rem;
  overflow: auto;
}

#help-window > .perk-grid {
  grid-template-columns: auto auto auto auto 1fr;
  align-items: center;
  display: grid;
}

#help-window::-webkit-scrollbar {
  background: #55ff5510;
  width: 4px;
}

#help-window::-webkit-scrollbar-thumb {
  background: #5f5;
}

#help-window > .perk-grid > * {
  border-right: thin dashed #5f5;
  padding: 4px;
}

#help-window > .perk-grid .perk-img {
  border: thin solid #5f5;
  width: 24px;
}

@keyframes scale {
  0% {
    transform: scale(.9)rotate(10deg);
  }

  50% {
    transform: scale(1.5)rotate(10deg);
  }

  100% {
    transform: scale(.9)rotate(10deg);
  }
}

/*# sourceMappingURL=sp.a278eb9f.css.map */
