On my website i have a video.
I used to have it set to auto play, but decided instead to create custom play/pause buttons. This is all well and good, and everything works functionally on mobile and desktop.
However, now because i removed autoplay, aesthetically on mobile on some phones, i see this huge default "watermark" play button overlay across my video background. I can't hide the video element until my play button is clicked because i want the video background image to persist even when the video is paused("the clouds").
Other than having some dumb logic that shows the img of the video thumbnail that i toggle as well, how can i get rid of this default play button.
Fyi, here are the video tag and properties.
<div class="overlay-section">
<div class="video-wrapper">
<video
id="life"
class="life-bg"
src="/videos/life.mp4"
loop
muted
playsinline
></video>
</div>
</div>
Edit:
Removing and adding the controls as suggested added another play button.

