.bgvideo {
    position: relative;
    width: 100%;
    height: 100vh;          /* вся высота экрана */
    overflow: hidden;       /* чтобы видео не вылезало */
    display: flex;
    justify-content: center;
    align-items: center;
}

.bgvideo video {
    position: absolute;
    inset: 0;               /* top:0 right:0 bottom:0 left:0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.effect {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.video-text {
    position: relative;     /* важно */
    z-index: 3;
    color: aqua;
    text-align: center;
}