diff --git a/public/dump.html b/public/dump.html
index 86a9c8f..8044986 100644
--- a/public/dump.html
+++ b/public/dump.html
@@ -1,4 +1,12 @@
+
+
+ Brain dump
+
+
+
+
+
@@ -24,7 +32,7 @@ This is a new site
Change log
- Sep 20, 2024: Moved the mess from index to this page. I think I found a style I might like to explore for the
- first page now
+ first page now. I saw this canvas template that might be a nice start... let's see.
- Sep, 2024: Updated this site.
- Sometime 11 years ago: made this site.
diff --git a/public/index.html b/public/index.html
index 57ca0a0..a500f7e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -2,36 +2,40 @@
kinda lost
+
+
-
-
-
- Welcome to whatever this is.
-
-
-
- I'm Maria.
-
-
-
-
+
+
+
+
+ Welcome to whatever this is.
+
+
+
+ I'm Maria.
+
+
+
+
+
\ No newline at end of file
diff --git a/public/journal.html b/public/journal.html
index f75c5d0..18f961c 100644
--- a/public/journal.html
+++ b/public/journal.html
@@ -5,6 +5,9 @@
Journal page
+
+
+
diff --git a/public/music/index.html b/public/music/index.html
index c0d70ac..9833424 100644
--- a/public/music/index.html
+++ b/public/music/index.html
@@ -5,9 +5,8 @@
Music Page
-
+
+
diff --git a/public/music/playlists.html b/public/music/playlists.html
index 54de382..f4f1b77 100644
--- a/public/music/playlists.html
+++ b/public/music/playlists.html
@@ -8,6 +8,7 @@
+
diff --git a/public/not_found.html b/public/not_found.html
index c16133d..65e3621 100644
--- a/public/not_found.html
+++ b/public/not_found.html
@@ -4,11 +4,14 @@
Vuela's Site - Not Found
+
+
+
- The requested page was not found.
+ The requested page was not found. Go back home
diff --git a/public/style.css b/public/style.css
index e69de29..cd9426d 100644
--- a/public/style.css
+++ b/public/style.css
@@ -0,0 +1,46 @@
+@import url('https://fonts.googleapis.com/css2?family=Jacquarda+Bastarda+9&display=swap');
+
+:root {
+ --accent: red;
+}
+
+body {
+ height: 100vh;
+ width: 100vw;
+}
+
+h1, h2 {
+ font-family: "Jacquarda Bastarda 9", serif;
+ font-weight: 400;
+ font-style: normal;
+}
+
+main.container {
+ padding: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+main.container > div {
+ height: 50vh;
+ display: grid;
+ align-items: center;
+ justify-content: center;
+ grid-template-columns: 50% 1fr;
+ width: max(1200px, 50%);
+}
+
+nav ul {
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+ list-style: none;
+ gap: 4px;
+}
+
+nav ul .nav-item {
+ padding: 12px;
+ border-radius: 12px;
+ text-align: center;
+}
\ No newline at end of file