Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,32 @@
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
|
|
4 |
}
|
5 |
|
6 |
h1 {
|
7 |
-
|
8 |
-
|
|
|
|
|
9 |
}
|
10 |
|
11 |
p {
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
}
|
17 |
|
18 |
.card {
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
24 |
}
|
25 |
|
26 |
.card p:last-child {
|
27 |
-
|
28 |
-
}
|
|
|
1 |
body {
|
2 |
+
padding: 2rem;
|
3 |
+
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
+
background-color: #f7f7f7; /* added a light gray background */
|
5 |
}
|
6 |
|
7 |
h1 {
|
8 |
+
font-size: 24px; /* increased font size */
|
9 |
+
margin-top: 0;
|
10 |
+
font-weight: bold; /* added bold font weight */
|
11 |
+
color: #333; /* changed to a darker gray */
|
12 |
}
|
13 |
|
14 |
p {
|
15 |
+
color: #666; /* changed to a darker gray */
|
16 |
+
font-size: 18px; /* increased font size */
|
17 |
+
margin-bottom: 10px;
|
18 |
+
margin-top: 5px;
|
19 |
}
|
20 |
|
21 |
.card {
|
22 |
+
max-width: 620px;
|
23 |
+
margin: 0 auto;
|
24 |
+
padding: 16px;
|
25 |
+
border: 1px solid lightgray;
|
26 |
+
border-radius: 16px;
|
27 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* added a subtle box shadow */
|
28 |
}
|
29 |
|
30 |
.card p:last-child {
|
31 |
+
margin-bottom: 0;
|
32 |
+
}
|