diff --git a/css/main.css b/css/main.css
index 9c6e7c3..30f7f23 100644
--- a/css/main.css
+++ b/css/main.css
@@ -1,5 +1,28 @@
+*{
+ box-sizing: border-box;
+}
body{
background-color:pink;
- color:#eee;
+ color: black;
font-family: Arial, Helvetica, sans-serif;
+}
+#chatBox{
+ width: 100%;
+ position: absolute;
+ bottom: 50px;
+ right: 0px;
+ left: 0px;
+
+}
+#chatInput{
+ position: fixed;
+ bottom: 0px;
+ width: 100%;
+ background-color: purple;
+ display: -webkit-box;
+ display: flex;
+ -webkit-box-pack: justify;
+ justify-content: space-between;
+ height: 70px;
+
}
\ No newline at end of file
diff --git a/index.html b/index.html
index 4c01dd8..c118a78 100644
--- a/index.html
+++ b/index.html
@@ -13,11 +13,13 @@
Welcome to Meira's Mobile App Development Chat Room!