html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
}

.font-inter {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.2;
  
}

a:link {
  color: white; /* normale Farbe */
  text-decoration: none; /* optional: Unterstreichung weg */
}

a:visited {
  color: lightgray; /* Farbe nach dem Klicken/Besuchen */
}

a:hover {
  color: darkorange; /* Farbe, wenn Maus drüber */
}

a:active {
  color: yellow; /* Farbe während des Klickens */
}