Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,6 +1,12 @@
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
h1 {
|
@@ -26,3 +32,8 @@ p {
|
|
26 |
.card p:last-child {
|
27 |
margin-bottom: 0;
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
+
display: flex;
|
5 |
+
justify-content: center;
|
6 |
+
align-items: center;
|
7 |
+
height: 100vh; /* Make the body take the full viewport height */
|
8 |
+
font-size: 20px; /* Increase the font size */
|
9 |
+
text-align: center; /* Center the text */
|
10 |
}
|
11 |
|
12 |
h1 {
|
|
|
32 |
.card p:last-child {
|
33 |
margin-bottom: 0;
|
34 |
}
|
35 |
+
|
36 |
+
/* Additional style to ensure the link is also affected by the font size */
|
37 |
+
a {
|
38 |
+
font-size: inherit; /* Ensures that links inherit the body's font size */
|
39 |
+
}
|