Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,22 @@ st.markdown("""
|
|
59 |
</style>
|
60 |
""", unsafe_allow_html=True)
|
61 |
|
62 |
-
# ----------- Header Title -----------
|
63 |
-
st.markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
# ----------- Description Section -----------
|
66 |
st.markdown("""
|
|
|
59 |
</style>
|
60 |
""", unsafe_allow_html=True)
|
61 |
|
62 |
+
# ----------- Header Title (Centered + Bold + Large + Professional) -----------
|
63 |
+
st.markdown("""
|
64 |
+
<style>
|
65 |
+
.centered-title {
|
66 |
+
text-align: center;
|
67 |
+
font-size: 40px;
|
68 |
+
font-weight: 800;
|
69 |
+
font-family: 'Segoe UI', sans-serif;
|
70 |
+
color: #002b45;
|
71 |
+
margin-top: 20px;
|
72 |
+
margin-bottom: 30px;
|
73 |
+
}
|
74 |
+
</style>
|
75 |
+
<div class="centered-title">📊 EquiPulse: Stock Sentiment Tracker</div>
|
76 |
+
""", unsafe_allow_html=True)
|
77 |
+
|
78 |
|
79 |
# ----------- Description Section -----------
|
80 |
st.markdown("""
|