Spaces:
Running
Running
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Arial', sans-serif;
|
3 |
+
}
|
4 |
+
|
5 |
+
#hero {
|
6 |
+
background-color: #306998; /* Python Blue */
|
7 |
+
height: 100vh;
|
8 |
+
display: flex;
|
9 |
+
justify-content: center;
|
10 |
+
align-items: center;
|
11 |
+
text-align: center;
|
12 |
+
}
|
13 |
+
|
14 |
+
#features {
|
15 |
+
background-color: #FFD43B; /* Python Yellow */
|
16 |
+
}
|
17 |
+
|
18 |
+
.feature-box {
|
19 |
+
background-color: #ffffff;
|
20 |
+
border-radius: 10px;
|
21 |
+
padding: 20px;
|
22 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
23 |
+
transition: transform 0.3s;
|
24 |
+
}
|
25 |
+
|
26 |
+
.feature-box:hover {
|
27 |
+
transform: translateY(-5px);
|
28 |
+
}
|
29 |
+
|
30 |
+
#contact {
|
31 |
+
background-color: #f8f9fa;
|
32 |
+
}
|