body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}

video {
    width: 80%; /* Adjust based on preference */
    max-width: 600px; /* Limits the maximum size */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border-radius: 10px;
}
