If the width property is set to 100%, the video player will be responsive and scale up and down:
Example
video {
width: 100%;
height: auto;
}
Notice that in the example above, the video player can be scaled up to be larger than its original size. A better solution, in many cases, will be to use the max-width property instead.