diff --git a/src/login.html b/src/login.html
index cee8f34..179e500 100644
--- a/src/login.html
+++ b/src/login.html
@@ -12,8 +12,8 @@
Login To Watch-Together Server
diff --git a/src/main.css b/src/main.css
new file mode 100644
index 0000000..6124b2f
--- /dev/null
+++ b/src/main.css
@@ -0,0 +1,63 @@
+@import url(https://fonts.googleapis.com/css?family=Roboto:300);
+
+body {
+ background-color: gray;
+ font-family: "Roboto", sans-serif;
+}
+
+.container {
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+header {
+ text-align: center;
+ font-size: 2rem;
+}
+
+.video-wrapper {
+ margin-top: 20px;
+ position: relative;
+ width: 100%;
+ padding-bottom: 56.25%; /* 16:9 aspect ratio for responsive video */
+}
+
+video {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ border-radius: 10px;
+ border: 2px solid black;
+}
+
+.user-list {
+ margin-top: 20px;
+}
+
+.user-list h2 {
+ margin-bottom: 10px;
+ font-size: 1.5rem;
+ color: #333;
+}
+
+.user-list ul {
+ list-style-type: none;
+ padding: 0;
+}
+
+.user-list li {
+ margin-bottom: 5px;
+ padding: 10px;
+ background-color: #f0f0f0;
+ border-radius: 5px;
+}
+
+.user-list li:hover {
+ background-color: #e0e0e0;
+}
+
+.user-list li:last-child {
+ margin-bottom: 0;
+}
\ No newline at end of file
diff --git a/src/main.html b/src/main.html
index 97869af..d70ce74 100644
--- a/src/main.html
+++ b/src/main.html
@@ -3,15 +3,29 @@
+
Client
- Client page!
-
-
+
+
+
+
+
+
+
People Watching:
+
+ - User 1
+ - User 2
+ - User 3
+
+
+
+
-
-