How to change stylesheet of gifplayer object

Given the example at GitHub - mbkupfer/dash-gif-component: A refined approach to add gifs to a dash app

import dash_gif_component as gif
import dash
import dash_html_components as html

app = dash.Dash(name)

app.layout = html.Div([
gif.GifPlayer(
gif=‘assets/my-gif.gif’,
still=‘assets/my-still.png’,
)
])

I was hoping someone could show me how I would be able to manipulate the stylesheet from within the python script, as you would any component style. I just can’t think of a way since the argument ‘style’ can’t be used within the gif.GifPlayer.

My end goal is to have the word “GIF” be blank when in ‘still’ mode so I can figure out how to place it in the background and having an input field and a few buttons come to the foreground. …or if that is not possible, have the gif totally disapear. Any help would be greatly appreciated.