body {
    color: white;
    background: #000000;
    user-select: none;
    overflow: hidden;
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

div {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000000e3;
    height: 100%;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(1em);
    cursor: pointer;
    display: flex
}

img {
    width: 70px;
    height: 70px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}