diff --git a/static/Genos-VariableFont_wght.ttf b/static/Genos-VariableFont_wght.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..0b96efd929b77fe13885fbf4aaa3ebc7b82ecbd2
Binary files /dev/null and b/static/Genos-VariableFont_wght.ttf differ
diff --git a/static/Ubuntu-R.ttf b/static/Ubuntu-R.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..d748728a20789bf5f95e524f3d508f54c67f9475
Binary files /dev/null and b/static/Ubuntu-R.ttf differ
diff --git a/static/style.css b/static/style.css
index 8accaf5b00a3088291e1f108c17513cab2ead708..6e5ec50c3efb98e2d4873393245b5bc531e95f8d 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,7 +1,18 @@
 
 
+@font-face {
+    font-family: Ubuntu;
+    src: url(/Ubuntu-R.ttf);
+}
+
+@font-face {
+    font-family: Genos-divoc;
+    src: url(/Genos-VariableFont_wght.ttf);
+}
+
 body {
-    background-color: olivedrab
+    background-color: #57c0a2;
+    font-family: Ubuntu, sans-serif;
 }
 
 .main-content {
@@ -11,7 +22,7 @@ body {
     margin-top: 10em;
     margin-bottom: 5em;
     max-width: 50em;
-    background-color: white;
+    background-color: #ffebd8;
 }
 
 a {
@@ -22,3 +33,53 @@ a {
     width: 100%;
     height: 15em;
 }
+
+h1,h2,h3 {
+    font-family: Genos-divoc, sans-serif;
+    font-weight: 600;
+}
+h1 {
+    font-size: 5rem;
+}
+h2 {
+    font-size: 3.7rem;
+}
+h3 {
+    font-size: 2rem;
+}
+h4{
+    color: #9945c5;
+}
+
+.badge-info {
+    background-color: #62c1a6;
+    color: black;
+}
+
+.badge-warning {
+    background-color: #fdbe4b;
+    color: black;
+}
+
+.badge-danger {
+    background-color: #ea4a72;
+    color: black;
+}
+
+.text-muted {
+    color: #222 !important;
+}
+
+@media (prefers-color-scheme: dark) {
+    body {
+        background-color: #0e0e0f;
+    }
+    .main-content {
+        background-color: #241b2b;
+        color: #ffebd8;
+    }
+
+    .text-muted {
+        color: #a74db7 !important;
+    }
+}