I was hoping someone could enlighten me why my video keeps floating on the top instead of aligning vertically? I am using flex-box.
`.mainLogoAnimation{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
}
video{width: 100%;
} 
<body>
<div class="mainLogoAnimation">
 <a href="indexPage2.html"><video src="samples/Audio Branding - Arcade/ArcadeLogo_Stinger_03.mp4" id="javaPlayer"  autoplay loop muted></video> </a>
</div>
</body>
 
    