diff --git a/index.html b/index.html
index 00f5a61a336d41d5ef347bcf405c1b19a6ea9f91..cb460966dbfe916eb9b3e1b64d97fee80d5e41f3 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
   <head>
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="favicon.svg" />
+    <link rel="stylesheet" href="src/style.css">
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title>Vite App</title>
   </head>
diff --git a/src/style.css b/src/style.css
index 852de7aa2ae57370627f8169ab1c4acc46643b9c..27b94c9fb303334ce429222bd9ae149130235bcb 100644
--- a/src/style.css
+++ b/src/style.css
@@ -1,8 +1,14 @@
-#app {
-  font-family: Avenir, Helvetica, Arial, sans-serif;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  text-align: center;
-  color: #2c3e50;
-  margin-top: 60px;
+#chatterbox {
+    position: absolute;
+    width: 500px;
+    bottom: 0;
+    right: 0;
+}
+
+#chatterbox .Timeline {
+    height: 500px;
+}
+
+body {
+    background-color: #205a634d;
 }