diff --git a/Exercise 1/index.css b/Exercise 1/index.css
index 4e673e754bb089f82a428057679da824bb9af2ca..d5c6d17247e6e653334a27ec5042e8b42913923b 100644
--- a/Exercise 1/index.css	
+++ b/Exercise 1/index.css	
@@ -1 +1,23 @@
-#mapid { height: 100%; }
\ No newline at end of file
+#mapid { 
+     height: 100%;
+       }
+	   
+body {
+    display: flex;
+    flex-direction: row;
+    margin: 0;
+    padding: 0;
+    }
+	
+#map-container {
+    flex: 1;
+    height: 100vh;
+    }
+	
+#chart-container {
+    flex: 1;
+    padding: 20px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    }