* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%; /* Ajustează lățimea video-ului */
    max-width: 800px; /* Nu depășește 800px */
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Opțional, pentru colțuri rotunjite */
}