video failing to scale with div css background
/* The object-fit property defines how an element responds to the height
and width of its content box.*/
/* A box you would like to place the video in*/
.wrapper {
width: 600px
height: 300px;
}
.wrapper_video > video {
width: 100%;
height: 100%;
object-fit: cover;
}