How do I make custom liquid video full page on mobile?

I’ve made a custom liquid section for the homepage where there’s a video. The video fits the fullscreen when in desktop form however for mobile it does not. I want to make it so it fits the whole screen when on mobile. Here is the custom liquid code that I’ve made for the homepage.

Hi @PM98 , can you share your store url?

Can I message you privately?

@PM98 , Yeah, send it to me.

Sent you a message!

@PM98 , Add the following code inside the tag :

@media (max-width:768px){

video {
    width: 100%;
    height: 100vh;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    
}

}