diff --git a/extension/index.html b/extension/index.html
index 4174371..a3e11b7 100644
--- a/extension/index.html
+++ b/extension/index.html
@@ -6,75 +6,13 @@
TubeArchivist Companion
-
+
+
v0.0.1
diff --git a/extension/style.css b/extension/style.css
new file mode 100644
index 0000000..e272579
--- /dev/null
+++ b/extension/style.css
@@ -0,0 +1,70 @@
+body {
+ font-family: Sen-Regular, sans-serif;
+ background-color: #00202f;
+ color: #97d4c8;
+}
+.container {
+ padding: 10px;
+ min-width: 300px;
+ max-width: 400px;
+}
+hr {
+ height: 1px;
+ color: white;
+ background-color: white;
+ margin: 10px 0;
+}
+#download {
+ text-align: center
+}
+#status-icon {
+ font-size: 1.5em;
+}
+.logo {
+ position: relative;
+}
+.logo img {
+ width: 100%;
+}
+.logo span {
+ position: absolute;
+ bottom: 10px;
+ right: 0;
+}
+.login-form {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+}
+.login-form label,
+.login-form input {
+ margin: 3px 0;
+}
+.submit {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.submit button,
+.youtube-page button {
+ margin: 10px;
+ border-radius: 0;
+ padding: 5px 13px;
+ border: none;
+ cursor: pointer;
+ background-color: #259485;
+ color: #ffffff;
+}
+.submit button:hover,
+.youtube-page button:hover {
+ background-color: #97d4c8;
+ transform: scale(1.05);
+ color: #00202f;
+}
+.icons {
+ display: flex;
+ grid-template-columns: 1fr 1fr;
+ justify-content: space-between;
+}
+.icons img {
+ width: 25px;
+}
\ No newline at end of file