.musicplayer-pause-button {
	float:left;
	border: 1px solid black;
	font-family: serif;
	background: transparent;
	cursor: pointer;
	text-align: left;
}
.player {
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 10px;
}
.player-video {
	width:100%;
}
.playlist-songs {
	margin:0;
	padding: 0;
	height: 100%;
	width: 100%;
	list-style: none;
}
.playlist-songs li {
	border: 1px solid black;
}
.playlist-songs li button {
	font-family: serif;
	border: none;
	width:100%;
	background: transparent;
	cursor: pointer;
	text-align: left;
	width:100%;
}
.playlist-songs li button:hover {
	color: white;
	background: black;
}
