body {  
     
}
html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;  
    padding: 0;  
    font-family: Arial, sans-serif;  
    background-color: #f0f0f0; 
}

.video {
    display: block;
    max-width: 100%;
    width: auto;
    height: 100vh;
    overflow: hidden;
}
.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.947);
    font-size: 2em;
    text-align: center;
}

