body {
	padding-bottom: 50px
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.player-bar {
	margin: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(5px);
	padding: 10px;
	display: flex;
	align-items: center;
	border-top: 1px solid #ddd
}

.player-icon {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
}

.track-info {
	flex-grow: 1;
}

.track-title {
	font-weight: bold;
}

.track-artist {
	font-style: italic;
	font-size: .8em;
}


.volume-slider {
	width: 10%;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 30px;
	margin-bottom: 0px;
}

.play-button {
	width: 30px;
	height: 30px;
}

@media (max-width:981px) {
	.player-bar {
		height: 6.0rem;
	}

	.player-icon {
		width: 3.5rem;
		height: 3.5rem;
	}

	.play-button{
		width: 3.0rem;
		height: 3.0rem;
	}
	
	.track-title {
		font-weight: bold;
		font-size: 1.4em;
	}
	
	.track-artist {
		font-style: italic;
		font-size: 1.0em;
	}
	
	.volume-slider {
		display: none
	}
}
