html, body {
  margin: 0;
  padding: 0;
}

body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    #drop-area {
      border: 2px dashed #ccc;
      padding: 20px;
      text-align: center;
      margin-bottom: 10px;
    }

canvas {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

/* Add styles for the HUD */
.hud {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  z-index: 1000;
}


.qr-code-selfie {

}