diff --git a/package-lock.json b/package-lock.json
index eb333ea..c925d2a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,5 +1,5 @@
 {
-  "name": "hp",
+  "name": "homepage",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
diff --git a/src/routes/index.lisp b/src/routes/index.lisp
index 489c58c..b40ce18 100644
--- a/src/routes/index.lisp
+++ b/src/routes/index.lisp
@@ -13,7 +13,7 @@
 
 (mk:deftag page ()
   <ui:layout>
-    <section class="h-full flex justify-center items-center">
+    <section class="h-full flex justify-center items-center" >
       <h1 class="text-4xl text-amber-500" >Hello HTMX from Common Lisp!</h1>
     </section>
   </ui:layout>)
diff --git a/src/ui/layout.lisp b/src/ui/layout.lisp
index c3e2c88..6acc787 100644
--- a/src/ui/layout.lisp
+++ b/src/ui/layout.lisp
@@ -11,12 +11,8 @@
     <head>
       <title>skyizwhite.dev</title>
       <script src="/static/htmx.min.js" ></script>
+      <link href="/static/main.css" rel="stylesheet">
       <link href="/static/tailwind.css" rel="stylesheet">
-      <style>
-        @tailwind base;
-        @tailwind components;
-        @tailwind utilities;
-      </style>
     </head>
     <body class="h-[100svh]" >,@(progn children)</body>
   </html>)
diff --git a/static/main.css b/static/main.css
new file mode 100644
index 0000000..b5c61c9
--- /dev/null
+++ b/static/main.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;