@font-face {
  font-family: "BoutiqueBitmap";
  /* font-weight: 600; */
  src: url("/fonts/BoutiqueBitmap9x9.ttf");
}

body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  /* background-color: hsla(240, 100%, 96%, 0.75); */
  background-color: #482e79;
  /* font-family: "BoutiqueBitmap", Arial, Helvetica, sans-serif; */
}

* {
  box-sizing: border-box;
}

#app {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spritePosition {
  margin: 10px 0 0 10px;
  font-size: 0.8em;
}

/* CSS */
.button {
  appearance: none;
  background-color: #6441a5;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  padding: 4px 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button:hover, .button.open {
  background-color: #472f74;
}

.button:focus {
  box-shadow: rgba(160, 46, 164, 0.4) 0 0 0 3px;
  outline: none;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button:active {
  background-color: #472f74;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}