.video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video video {
	max-width: 100%;
	max-height: 100%;
}
.play {
	position: absolute;
	z-index: 1;
	color: #fff;
	width: 100px;
	height:50px;
	background-color: rgba(0,0,0,0.5);
	border:2px solid rgba(255,255,255,0.5);
	border-radius:3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video.played .play {
	display: none;
}