body {
  margin: 0;
  overflow: hidden;
  font-family: monospace;
  background: white;
}

#note-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.note {
  position: absolute;
  padding: 10px;
  background: #fff8a8;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  font-size: 14px;
  max-width: 160px;
  transform: rotate(var(--rotate));
}

#note-input {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

#sweeper {
  position: fixed;
  width: 100px;
  height: 40px;
  background: black;
  bottom: 0;
  left: -120px;
  display: none;
  z-index: 10000;
}