html{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

#video {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 500px;
    
    -webkit-mask-image: url(logo.svg);
    mask-image: url(logo.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100px 20px;
}