diff --git a/assets/Bokor-Regular.woff2 b/assets/Bokor-Regular.woff2
new file mode 100644
index 0000000..721b82f
Binary files /dev/null and b/assets/Bokor-Regular.woff2 differ
diff --git a/assets/favicon.svg b/assets/favicon.svg
new file mode 100644
index 0000000..a23a30f
--- /dev/null
+++ b/assets/favicon.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..842eaab
--- /dev/null
+++ b/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+ futile
+
+
+
+
+
+
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..6512a8c
--- /dev/null
+++ b/style.css
@@ -0,0 +1,30 @@
+@font-face {
+ font-family: "Bokor";
+ src: url("assets/Bokor-Regular.woff2") format("woff2");
+}
+
+html,
+body {
+ margin: 0;
+ background-color: black;
+}
+
+.container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+}
+
+.title {
+ color: white;
+ text-decoration: none;
+ cursor: default;
+ font-family: "Bokor";
+ font-size: clamp(1em, 4em, 40vw);
+
+ /* because chromium renders this font like dogshit at weight 600 */
+ @supports not (-moz-appearance: none) {
+ font-weight: 400;
+ }
+}