html {
  display: table;
  width: 100%;
}

body {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  font-family: Tahoma, Ubuntu;
  -webkit-font-smoothing: antialiased;
  color: #444;
  background-color: black;
  perspective: 1000;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
canvas {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

button {
  font: inherit;
  appearance: none;
  outline: none;
  padding: 10px 20px;
  color: black;
  text-shadow: 0 1px 2px #ffffff26;
  background-color: rebeccapurple;
  box-shadow: inset 0 0 2px #ffffff26;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

button:hover {
  transform: scale(1.08);
  background-color: #7445a3;
}

button:active {
  transform: scale(0.95);
  opacity: 0.5;
}

audio {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

@keyframes Cue-In {
  0% {
    opacity: inherit;
    transform: inherit;
  }

  to {
    transform: inherit;
  }
}

.cue-in {
  animation: inherit;
}
