private AnchorPane initGUItop() {
    AnchorPane feld = new AnchorPane();

    Text überschrift = new Text("Archiv Projektliste");
    überschrift.setStyle(Css.überschrift());
    feld.getChildren().add(überschrift);
    AnchorPane.setTopAnchor(überschrift, 10.0);
    AnchorPane.setLeftAnchor(überschrift, 10.0);

    return feld;
  }