NEXAS commited on
Commit
15b6e08
·
verified ·
1 Parent(s): eb43078

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -19,12 +19,14 @@ def set_title_style():
19
  <style>
20
  .title {
21
  font-family: Arial, sans-serif;
22
- font-size: 3rem;
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
  """