Update app.py
Browse files
app.py
CHANGED
@@ -19,12 +19,14 @@ def set_title_style():
|
|
19 |
<style>
|
20 |
.title {
|
21 |
font-family: Arial, sans-serif;
|
22 |
-
font-size:
|
23 |
-
font-weight: bold
|
24 |
background: linear-gradient(to right, gold, black);
|
25 |
-webkit-background-clip: text;
|
26 |
-webkit-text-fill-color: transparent;
|
27 |
text-align: center;
|
|
|
|
|
28 |
}
|
29 |
</style>
|
30 |
"""
|
|
|
19 |
<style>
|
20 |
.title {
|
21 |
font-family: Arial, sans-serif;
|
22 |
+
font-size: 4rem; /* Increased font size */
|
23 |
+
font-weight: 900; /* Extra bold for a classic, strong look */
|
24 |
background: linear-gradient(to right, gold, black);
|
25 |
-webkit-background-clip: text;
|
26 |
-webkit-text-fill-color: transparent;
|
27 |
text-align: center;
|
28 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow for a classic effect */
|
29 |
+
margin-top: 20px; /* Add spacing above the title */
|
30 |
}
|
31 |
</style>
|
32 |
"""
|