@import "button.css";


body{
	background-color: #26B4BC;
	font-family: Arial, Helvetica, sans-serif;
}


.wrapper{
	max-width: 900px;
	margin: 60px auto;
}

.player{
	position: relative;
}

.player video{
	width: 100%;
	aspect-ratio: 16/9;
	vertical-align: middle;
	object-fit: cover;
}


.player-title{
	color: white;
	position: absolute;
	margin: 5px;
	top: 0;
	bottom: 0;
	right: 0;
	left:20px;

}

.player-action{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	gap: 10px;
}

.player-progress{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	padding: 15px;
}


.player-progress input{
	flex: 1;
	z-index: 30;
}

.player-overlay{
	position: absolute;
	right: 0;
	left: 0;
	top:0;
	bottom: 0;
	opacity: 0;
	transition: .3s opacity
}


.player:hover .player-overlay{
	opacity: 1;
}


