#parent {
  position: relative;
  width: 80vw;
  height: 80vh;
  border: 1px solid black;
  margin: auto;
}

#child {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: blue;
  cursor: move;
}