Spaces:
Build error
Build error
Update ecolytics-landing-page.html
Browse files- ecolytics-landing-page.html +21 -30
ecolytics-landing-page.html
CHANGED
|
@@ -18,38 +18,29 @@
|
|
| 18 |
}
|
| 19 |
|
| 20 |
* {
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
}
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
display: flex;
|
| 38 |
-
flex-direction: column; /* Optional: Use flexbox for layout */
|
| 39 |
-
}
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
}
|
| 46 |
|
| 47 |
-
.container {
|
| 48 |
-
max-width: 1200px;
|
| 49 |
-
margin: 0 auto;
|
| 50 |
-
padding: 0 20px;
|
| 51 |
-
width: 100%; /* Ensure the container takes up the full width */
|
| 52 |
-
}
|
| 53 |
|
| 54 |
/* Hero Section */
|
| 55 |
.hero {
|
|
|
|
| 18 |
}
|
| 19 |
|
| 20 |
* {
|
| 21 |
+
margin: 0;
|
| 22 |
+
padding: 0;
|
| 23 |
+
box-sizing: border-box;
|
| 24 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
body {
|
| 28 |
+
background-color: var(--light);
|
| 29 |
+
color: var(--dark);
|
| 30 |
+
overflow-x: hidden;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
section {
|
| 34 |
+
padding: 80px 0;
|
| 35 |
+
position: relative;
|
| 36 |
+
}
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
+
.container {
|
| 39 |
+
max-width: 1200px;
|
| 40 |
+
margin: 0 auto;
|
| 41 |
+
padding: 0 20px;
|
| 42 |
+
}
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
/* Hero Section */
|
| 46 |
.hero {
|