body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.circle {
    position: absolute;
    border-radius: 50%;
    /* NEU: Flexbox-Eigenschaften zum Zentrieren des Textes */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Textfarbe */
    font-family: sans-serif;
    text-align: center;
    text-decoration: none; /* Entfernt die Unterstreichung bei Links */
    font-size: 1.2em;
    padding: 5px; /* Kleiner Innenabstand */
    box-sizing: border-box; /* Stellt sicher, dass das Padding die Größe nicht verändert */
}

.animating-circle {
    opacity: 0.5;
}

.static-circle {
    background-color: grey;
    opacity: 0.5;
  }
