HBox.setMargin(hourRight, new Insets(0, 40, 0, 0));
HBox.setMargin(minRight, new Insets(0, 40, 0, 0));
clockBox.getChildren().addAll(hourLeft, hourRight, minLeft, minRight, secLeft, secRight);
clockBox.setLayoutY(375);
Pane pane = new Pane(dayBox, dateBox, monthBox, clockBox);
pane.setPadding(new Insets(10, 10, 10, 10));
Scene scene = new Scene(pane, 1280, 800, new LinearGradient(0, 0, 0, 800, false, CycleMethod.NO_CYCLE,
new Stop(0.0, Color.rgb(28, 27, 22)),
new Stop(0.25, Color.rgb(38, 37, 32)),
new Stop(1.0, Color.rgb(28, 27, 22))));