html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  width: 100%;
  height: 100%;
}

#text {
  position: absolute;
  color: white;
  font-size: 3rem;
  font-family: Arial, sans-serif;
  user-select: none;
  cursor: grab;
  white-space: nowrap;
  user-select: none; /* Optional: Text nicht markierbar */
}
