diff --git a/src/main/java/lab/App.java b/src/main/java/lab/App.java
index 9a2c2db85648a36072ae4149a7d08ed00c682f31..c62e5aa348cbfe2346c2f858069b3e8061cea7fa 100644
--- a/src/main/java/lab/App.java
+++ b/src/main/java/lab/App.java
@@ -7,6 +7,7 @@ import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
+import javafx.scene.text.Font;
import javafx.stage.Stage;
import javafx.stage.WindowEvent;
@@ -28,6 +29,7 @@ public class App extends Application {
@Override
public void start(Stage primaryStage) {
+ Font.loadFont(this.getClass().getResourceAsStream("/TRON.TTF"), 20);
try {
this.primaryStage = primaryStage;
switchToMenu();
diff --git a/src/main/resources/TRON.TTF b/src/main/resources/TRON.TTF
new file mode 100644
index 0000000000000000000000000000000000000000..57a826d8e2eacea775fcddd596e37da12e5228bd
Binary files /dev/null and b/src/main/resources/TRON.TTF differ
diff --git a/src/main/resources/lab/application.css b/src/main/resources/lab/application.css
index 1200dd30a392b1587d148c7d5e19f09f65beda77..a09e2e1785abb10110b7c1d1dda3bde2eb51f31f 100644
--- a/src/main/resources/lab/application.css
+++ b/src/main/resources/lab/application.css
@@ -46,6 +46,7 @@ Label {
-fx-border-radius:30.0px;
-fx-text-fill: white;
-fx-font-size: 20.0px;
+ -fx-font-family: "TRON";
-fx-background-radius:30.0px;
}