html {
  touch-action: none;

  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  touch-action: none;
}

#workspace {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: rgb(226, 226, 226);
  overflow: hidden;
}

.target {
  position: absolute;
  border: 1px solid black;
  background-color: red;
  box-sizing: border-box;
}
