diff --git a/static/index.html b/static/index.html
new file mode 100644
index 0000000..9bb416e
--- /dev/null
+++ b/static/index.html
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+ abyss paste
+
+
+
+
+ abyss paste
+
+
+
+
+
+
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..ee4e83c
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,31 @@
+body {
+ font-family: Arial, sans-serif;
+ background-color: #1d1f21;
+ color: #c5c6c7;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+ margin: 0;
+}
+
+h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+}
+
+button {
+ padding: 0.75rem 2rem;
+ background-color: #66fcf1;
+ border: none;
+ border-radius: 5px;
+ color: #1f2833;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background-color 0.3s;
+}
+
+button:hover {
+ background-color: #45a29e;
+}