import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.TextArea;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Ar extends Application {
  public static void main(String[] args) {
    launch(args);
  }

  @Override public void start(Stage stage) {
    TextArea title = new TextArea("بينهم أمير قطر ووزير خارجية عمان.. تحقيق يفضح تجسس");
    title.setStyle("-fx-font-size: 40px;");
    VBox layout = new VBox(10);
    layout.setAlignment(Pos.CENTER);
    layout.getChildren().addAll(title);
    // layout the scene.
    final Scene scene = new Scene(layout, 800, 600);
    stage.setScene(scene);
    stage.show();
  }
}
