diff --git a/dashboard.py b/dashboard.py
index 5574203..5d7e0d0 100644
--- a/dashboard.py
+++ b/dashboard.py
@@ -27,7 +27,7 @@ def generate_sample(ctx, e):
     if ctx.count % 50 == 0:
         emit('debug', {'text': 'Log message #'+str(ctx.count)+'!'})
     tweet = e.data
-    print(tweet)
+    # print(tweet)
     # base sample on previous one
     # sample = clip(-100, e.data['previous'] + random.uniform(+5.0, -5.0), 100)
     # emit to outside world
diff --git a/dashboard_static/index.html b/dashboard_static/index.html
index bc976ac..83eb765 100644
--- a/dashboard_static/index.html
+++ b/dashboard_static/index.html
@@ -57,39 +57,17 @@
             
         
         
 
     
diff --git a/dashboard_static/style/style.css b/dashboard_static/style/style.css
index 802992c..14d15a2 100644
--- a/dashboard_static/style/style.css
+++ b/dashboard_static/style/style.css
@@ -23,7 +23,7 @@ body {
 .container {
 	background-color: var(--main-bg);
 	color: white;
-	padding: 16px 32px;
+	padding: 16px 48px;
 }
 
 .header, .sports, .logo {
@@ -103,8 +103,24 @@ body {
 	align-items: center;
 }
 
-/* Three main columns; CSS Grid */
+.filters-search input {
+	height: 28px;
+	width: 100%;
+	border: none;
+	font-family: 'Robot', sans-serif;
+	font-size: 24px;
+	padding: 0;
+	padding-right: 32px;
+}
 
+.filters-search span {
+	position: absolute;
+	font-weight: 500;
+	font-size: 24px;
+	color: var(--main-medium-dark);
+}
+
+/* Three main columns; CSS Grid */
 .maintable {
 	/*background-color: #ffffff; */ /* The colors are there just so that I can see what I'm doing better */
 	display: grid;
@@ -112,35 +128,39 @@ body {
 	grid-template-columns: 1fr 1fr 1fr;
 	grid-template-rows: 1fr 1fr;
 
-	gap: 20px;
-	margin:20px;
+	gap: 48px;
+	/* margin:20px; */
+}
+
+.main {
+	margin-top: 48px;
+}
+
+.column {
+	border-radius: 16px;
 }
 
 .leftcol {
 	background-color: red;
-	border-radius: 16px;
 	grid-row: 1/ -1;
-
-	margin: 40px;
 }
 
 .centercol {
 	background-color: green;
-	border-radius: 16px;
 	grid-row: 1/ -1;
-	margin: 40px;
 }
 
 .searchbar {
 	background-color: blue;
-	border-radius: 16px;
 	height: 400px;
-	margin: 40px;
 }
 
 .popchart {
 	background-color: rgba(255, 0, 255, 0.344);
-	border-radius: 16px;
 	height: 400px;
-	margin: 40px;
+}
+
+.colheader {
+	font-size: 38px;
+	padding-left: 30px;
 }
\ No newline at end of file