diff --git a/client/src/components/Welcome.tsx b/client/src/components/Welcome.tsx
index 981aae4..a121968 100644
--- a/client/src/components/Welcome.tsx
+++ b/client/src/components/Welcome.tsx
@@ -1,9 +1,6 @@
import * as React from 'react';
import { useState, useEffect, useRef } from 'react';
-import '@fontsource/roboto/300.css';
-import '@fontsource/roboto/400.css';
-import '@fontsource/roboto/500.css';
-import '@fontsource/roboto/700.css';
+import './welcome.css'
import cytoscape, { LayoutOptions } from 'cytoscape'
import klay from 'cytoscape-klay';
import { Link as RouterLink, useNavigate } from 'react-router-dom';
@@ -63,8 +60,8 @@ function Welcome() {
svgElements.push(
-
-
+ {nodes[id].data.title ? nodes[id].data.title : id}
)
diff --git a/client/src/components/welcome.css b/client/src/components/welcome.css
new file mode 100644
index 0000000..849f441
--- /dev/null
+++ b/client/src/components/welcome.css
@@ -0,0 +1,12 @@
+
+svg .world-circle {
+ fill: var(--clr-primary)
+}
+
+svg .world-name {
+ fill: white;
+ font-size: 2px;
+ font-weight: 500;
+ text-anchor: middle;
+ dominant-baseline: middle;
+}