/* styles.css */
body {
  font-family: Arial, sans-serif;
  text-align: center;
 
}

#drawingCanvas {
  border: 1px solid #000;
  width: 100%; /* Dynamische Breite */
  height: auto; /* Höhe wird automatisch angepasst */
  touch-action: none; /* Wichtig für Touch-Geräte */
}

.controls {
  margin-top: 10px;
}

button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
}
