Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,36 @@
|
|
| 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 |
+
line-height: 1.6;
|
| 5 |
+
background-color: #f7f8fa; /* Light background for contrast */
|
| 6 |
+
color: #333; /* Darker text color for better readability */
|
| 7 |
}
|
| 8 |
|
| 9 |
h1 {
|
| 10 |
+
font-size: 24px; /* Increased font size for better visibility */
|
| 11 |
+
margin-top: 0;
|
| 12 |
+
color: #2c3e50; /* Darker color for heading contrast */
|
| 13 |
+
font-weight: bold; /* Added font weight for emphasis */
|
| 14 |
}
|
| 15 |
|
| 16 |
p {
|
| 17 |
+
color: #6b7280;
|
| 18 |
+
font-size: 16px; /* Slightly larger font size for readability */
|
| 19 |
+
margin-bottom: 1rem;
|
| 20 |
+
margin-top: 0.5rem;
|
| 21 |
+
line-height: 1.6; /* Improved line spacing for better text flow */
|
| 22 |
}
|
| 23 |
|
| 24 |
.card {
|
| 25 |
+
max-width: 620px;
|
| 26 |
+
margin: 1rem auto; /* Added vertical margin for spacing between elements */
|
| 27 |
+
padding: 1.5rem; /* Increased padding for a more spacious feel */
|
| 28 |
+
border: 1px solid #dcdcdc;
|
| 29 |
+
border-radius: 16px;
|
| 30 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
|
| 31 |
+
background-color: #fff; /* White background for card contrast */
|
| 32 |
}
|
| 33 |
|
| 34 |
.card p:last-child {
|
| 35 |
+
margin-bottom: 0;
|
| 36 |
}
|