body {
    background-color: #e5edfa;
  }
  .hide {
    display: none;
  }
  #draggable-object {
    background-color: #006eff;
    width: 9em;
    height: 9em;
    border-radius: 0.5em;
    cursor: move;
  }
  #drop-point {
    height: 10em;
    width: 10em;
    border: 2px dashed #000000;
    background-color: aliceblue;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }