diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..a556684
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,6 @@
+---
+title: "Home"
+date: 2023-06-27
+---
+
+Welcome to my site!
diff --git a/layouts/index.html b/layouts/index.html
index 3399ec0..0686c2a 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,16 @@
{{ define "main" }}
+
+
+
+
+ {{ range .Site.RegularPages }}
+ - {{ .Title }}
+ {{ end }}
+
+
-{{ .Title }}
-
- {{ .Content }}
-
{{ end }}
diff --git a/static/css/.styles.css.swp b/static/css/.styles.css.swp
new file mode 100644
index 0000000..d071f4b
Binary files /dev/null and b/static/css/.styles.css.swp differ
diff --git a/static/css/styles.css b/static/css/styles.css
new file mode 100644
index 0000000..e9f802a
--- /dev/null
+++ b/static/css/styles.css
@@ -0,0 +1,26 @@
+.centered {
+ width: 100vw;
+ max-width: 100%;
+ height: 100vh;
+
+ display: grid;
+ align-content: center;
+ justify-content: center;
+ justify-items: center;
+ align-items: center;
+}
+
+.top-fade {
+ background: linear-gradient(rgba(11,11,12,1) 0%, rgba(11,11,12,0.9 20%), rgba(0,0,0,0.1), 100%)
+}
+
+.dashed-bottom {
+ border-bottom: 5px dashed white;
+}
+
+body {
+ overflow-x: hidden;
+ margin: 0;
+ height: 100%;
+ padding-bottom: 0px;
+}
diff --git a/themes/clortox/layouts/_default/.baseof.html.swp b/themes/clortox/layouts/_default/.baseof.html.swp
new file mode 100644
index 0000000..9cb35db
Binary files /dev/null and b/themes/clortox/layouts/_default/.baseof.html.swp differ
diff --git a/themes/clortox/layouts/partials/.header.html.swp b/themes/clortox/layouts/partials/.header.html.swp
new file mode 100644
index 0000000..cec9d51
Binary files /dev/null and b/themes/clortox/layouts/partials/.header.html.swp differ
diff --git a/themes/clortox/layouts/partials/head.html b/themes/clortox/layouts/partials/head.html
index e69de29..1ee1bde 100644
--- a/themes/clortox/layouts/partials/head.html
+++ b/themes/clortox/layouts/partials/head.html
@@ -0,0 +1,3 @@
+
+
+
diff --git a/themes/clortox/layouts/partials/header.html b/themes/clortox/layouts/partials/header.html
index b3f7c45..17c5a08 100644
--- a/themes/clortox/layouts/partials/header.html
+++ b/themes/clortox/layouts/partials/header.html
@@ -1,4 +1,4 @@
-
+
diff --git a/themes/clortox/static/css/clortox.css b/themes/clortox/static/css/clortox.css
new file mode 100644
index 0000000..71f2b55
--- /dev/null
+++ b/themes/clortox/static/css/clortox.css
@@ -0,0 +1,14 @@
+.navbar {
+ margin: 0;
+ background: rgb(11,11,12);
+ height: 3em;
+ border-color: white;
+ border-bottom: 5px;
+ overflow: hidden;
+}
+
+.sticky {
+ position: fixed;
+ top: 0;
+ width: 100%;
+}