col1, col2 = st.columns([1.5, 2])
with col1:
with st.container(height=550, border=True):
container1()
with col2:
with st.container(height=550, border=True):
container2()
with st.container(height=500, border=True):
container3()
with st.container(height=500, border=True):
container4()
Is it possible to change the background color and text color of each container?