Simple solution with inline CSS (demo):
import streamlit as st
st.markdown(
"""
<style>
[data-testid="stMarkdownContainer"] p {
font-size: 50px;
}
</style>
""",
unsafe_allow_html=True,
)
st.text_input("Enter something here")