How to center the logo?

hi, I have this code of a logo, and its aligned at the left side, how can I aligne the logo to be centered?

@app.callback(Output("page-content", "children"), [Input("url", "pathname")])
def render_page_content(pathname):
    if pathname == "/":
        return  dbc.Container([
            dbc.Col([
                dbc.Row([
                    html.Div([
                html.Img(src='data:image/png;base64,{}'.format(encoded_image.decode()),
                height=100),
                              ])
                ])
            ],align="center", md=8),

the align=“center” doesn’t center ???

new to dash but maybe:

 style={
            'textAlign': 'center',
            '
        }

sorry … doesn’t work, but thanks for giving ideas