diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro
index e06333b..f740214 100644
--- a/src/layouts/Default.astro
+++ b/src/layouts/Default.astro
@@ -13,11 +13,14 @@ import Footer from '@components/global/Footer.astro'
// Styles
import '@styles/index.scss'
import '@shoelace-style/shoelace/dist/themes/dark.css';
+import '@fontsource-variable/roboto-flex';
---
-
+
+
+
\ No newline at end of file
diff --git a/src/styles/index.scss b/src/styles/index.scss
index 26647d3..857698a 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -6,7 +6,7 @@
body {
background: black;
color: white;
- font-family: Arial, Helvetica, sans-serif;
+ font-family: 'Roboto Flex Variable', sans-serif;
margin: auto;
max-width: 1200px;
@@ -22,5 +22,9 @@ body {
}
* {cursor: var(--default-cursor)}
- a, button {cursor: var(--pointer-cursor) !important}
+ a, button, a > * {cursor: var(--pointer-cursor) !important}
+}
+
+.content {
+ margin-top: 72px;
}
\ No newline at end of file