* {
margin: 0;
    padding: 0;
        box-sizing: border-box;
}

body {
	    display: flex;
	        justify-content: center;
		    align-items: center;
		        height: 100vh;
			    background-color: #000; /* Optional background color */
		    }

		    .video-container {
			        width: 100%;
				    height: 100%;
				        max-width: 640px; /* Max width for larger screens */
					    max-height: 100%; /* Adjust according to your preference */
					        overflow: hidden;
					}

					video {
						    width: 100%;
						        height: auto; /* Maintain aspect ratio */
							    max-height: 100%; /* Adjust based on the height of the container */
						    }

