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

html,
body {
  width: 100%;
  height: 100%;
  background: #dcd3ff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Comic Sans MS', 'Comic Sans', 'Lato';
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* This ensures viewport height consistency on mobile browsers */
body {
  min-height: 100dvh;
}

canvas {
  display: block;
}

.text-box {
  text-align: center;
}

h1 {
  text-align: center;
}

::selection {
  color: none;
  background: none;
}
::-moz-selection {
  color: none;
  background: none;
}
