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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Pacifico";
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  touch-action: none;
}

body {
  background-color: rgb(6, 27, 65);
  min-height: 100vh;
  min-width: 100vw;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
}

.canvas-wrapper {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

canvas {
  display: block;
  touch-action: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  pointer-events: auto;
}
