body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(0deg, #000000 0%, #0d0d0d 50%, #000000 100%);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    animation: shooting-star linear infinite;
}

@keyframes shooting-star {
    0% {
        opacity: 0;
        transform: translate(calc(var(--startX) * 100vw), calc(var(--startY) * 100vh));
    }

    25%,
    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(calc(var(--endX) * 100vw), calc(var(--endY) * 100vh));
    }
}

.container {
    position: relative;
    width: 80vw;
    height: 45vw;
    max-width: 142.22vh;
    max-height: 80vh;
    margin: 10vh auto;
    box-shadow: 0 0 20px 10px #000000, 0 0 30px 15px #001c38;
    z-index: 2;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}