.video-container {
	/* The max-width you want to enforce */
	max-width: 900px; 
	/* Centers the container on the page */
	margin: 0 auto;
	/* Ensures the container takes up full width when below max-width */
	width: 100%;
}

/* Optional: If needed, ensure the video player adheres to its container's size */
.video-js {
	width: 100%;
	height: auto;
}