diff --git a/index.html b/index.html
index 8300a1607..47f87bb55 100644
--- a/index.html
+++ b/index.html
@@ -7,6 +7,7 @@
Where work happens | Slack
+
@@ -22,15 +23,15 @@
Where Work Happens
- When your team needs to kick off a project, hire a new employee, deploy some code, review a sales contract, finalize next year's budget, measure an A/B test, plan your next office opening, and more, Slack has you covered.
- GET STARTED
- Already using Slack? Sign in
+ When your team needs to kick off a project, hire a new employee, deploy some code, review a sales contract, finalize next year's budget, measure an A/B test, plan your next office opening, and more, Slack has you covered.
+ GET STARTED
+ Already using Slack? Sign in
-
+
You´re in good company
-
Millions of people around the world have already made Slack the place where their work happens.
-
DISCOVER WHY
+
Millions of people around the world have already made Slack the place where their work happens.
+
DISCOVER WHY
@@ -38,14 +39,14 @@
You´re in good company
-
-
Try it for free
-
Already using Slack? Sign in
-
GET STARTED
+
+
Try it for free
+
Already using Slack? Sign in
+
GET STARTED
-
+
COMPANY
diff --git a/stylesheets/style.css b/stylesheets/style.css
index cff873eb2..3f7d9cbe3 100644
--- a/stylesheets/style.css
+++ b/stylesheets/style.css
@@ -1,7 +1,139 @@
-/*
-background-grey: #F4F3F4;
-button-purple: #192592
-main-titles dark-grey: #2C303F;
-paragraph grey: #5b5e6d;
-nav grey: #5b5e6d;
-*/
+
+*{
+ margin:0;
+ padding:0;
+}
+
+
+@media (max-width: 768px) {
+
+ body{
+
+ display:flex;
+ flex-wrap: wrap;
+ }
+
+ nav{
+ height:70px;
+ width:100%;
+ background-color:white;
+ position:fixed;
+ top:0;
+ display: flex;
+ align-items: center;
+ }
+ nav img{
+ width: 80px;
+ height: 50px;
+ margin-left: 2%;
+ }
+ nav ul{
+ display:none;
+ }
+ nav ul li{
+ display: inline-block;
+ }
+
+
+ header{
+ width: 100%;
+ padding: 80px 20px 20px 20px;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+ header h1{
+ font-size: 50px;
+ }
+ .paragraph{
+ font-size: 25px;
+ padding: 40px 0;
+ }
+ .regular-button{
+ width: 100%;
+ background-color: navy;
+ height: 50px;
+ border: none;
+ }
+ header button > span{
+ color:white;
+ font-size:15px;
+ }
+ .small-font {
+ font-size:20px;
+ padding: 10px 0;
+ }
+ header img{
+ order: 4;
+ max-width:100%;
+ height:auto;
+ padding: 50px 0;
+ }
+
+
+ #good-company{
+ background-color: lightgray;
+ display:flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ padding: 20px;
+ }
+ #good-company h2{
+ font-size:30px;
+ padding-top: 30px;
+ }
+ #good-company button{
+ width: 100%;
+ background-color:white;
+ height: 50px;
+ border:2px solid navy;
+ }
+ #good-company button > span{
+ font-weight: 800;
+ color: navy;
+ }
+ #good-company img{
+ height:100%;
+ width:200px;
+ padding:50px;
+ }
+
+
+ #try-free{
+ display:flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ padding: 20px;
+ }
+ #try-free span{
+ color:white;
+ font-size:15px;
+ }
+ #try-free p.small-font{
+ order:+2;
+ }
+
+ #lists {
+ display:flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ padding: 20px;
+ background-color: red;
+ }
+ #lists ul{
+
+ }
+ #lists ul li{
+
+ }
+
+
+
+
+
+
+
+
+
+
+}
\ No newline at end of file