body, html {
    background-color: #000;
    color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
canvas {
    position:absolute;
    top:0;
    left:0
}
#foreground-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 48px;
    font-family: Arial, sans-serif;
    z-index: 10; /* GANZ OBEN */
    pointer-events: none; /* Damit Maus durchklicken kann */
  }

  .wrapper {
    height: 100vh;
    /*This part is important for centering*/
    display: grid;
    place-items: center;
  }
  
  .typing-demo {
    width: 9ch;
    animation: typing 2s steps(9), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    text-transform: uppercase;
    font-family: 'Oxygen Mono', monospace;
    font-size: 2em;
    color: rgb(0, 0, 0);
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }
  
  body {
    text-align: center;
  }
  
  .info {
    position: absolute;
    bottom: 0;
    padding: 20px;
  }