hbox.setStyle(
"-fx-background-color:\n"
+ "linear-gradient(#e5eaeb 0%, #bac4c9 100%)\n");
VBox textVBox = new VBox();
Text welcome = new Text("Luj Komandor");
welcome.setFont(Font.font("Arial", 24));
Text info = new Text("Luj Szperacz control application");
info.setFont(Font.font("Arial", 11));
textVBox.getChildren().addAll(welcome, info);
ImageView imageTop = new ImageView(new Image(getClass().getResourceAsStream("/images/koprobo.png")));
hbox.getChildren().addAll(imageTop, textVBox);