/* LITTLE DENTIST FOR KIDS 3 - MAPI GAMES */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0d1420;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  overscroll-behavior: none;
  position: fixed;
}

#wrap {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1420;
}

#game {
  display: block;
  touch-action: none;
  outline: none;
  image-rendering: auto;
  background: #0d1420;
}
