diff --git a/src/Components/Misc/TextComponents.tsx b/src/Components/Misc/TextComponents.tsx
index d5d51eb..2612bd4 100644
--- a/src/Components/Misc/TextComponents.tsx
+++ b/src/Components/Misc/TextComponents.tsx
@@ -6,6 +6,6 @@ export const Paragraph = styled.p`
`;
// eslint-disable-next-line react-refresh/only-export-components
-export const H2 = styled.h2`
+export const H1 = styled.h1`
color: ${theme.palette.text.primary};
`;
diff --git a/src/Components/Views/StartMenu/StartMenu.tsx b/src/Components/Views/StartMenu/StartMenu.tsx
index ed964a2..32feb9f 100644
--- a/src/Components/Views/StartMenu/StartMenu.tsx
+++ b/src/Components/Views/StartMenu/StartMenu.tsx
@@ -9,7 +9,7 @@ import { useAnalytics } from '../../../Hooks/useAnalytics';
import { Cog, Info } from '../../../Icons/generated';
import { InfoModal } from '../../Misc/InfoModal';
import { SupportMe } from '../../Misc/SupportMe';
-import { H2, Paragraph } from '../../Misc/TextComponents';
+import { H1, Paragraph } from '../../Misc/TextComponents';
import LayoutOptions from './LayoutOptions';
import { Spacer } from '../../Misc/Spacer';
import { usePlayers } from '../../../Hooks/usePlayers';
@@ -212,7 +212,7 @@ const Start = () => {