.player{
	width: 90%;
	height: 650px;

	overflow: hidden;

	background: radial-gradient(#2953cd,#000000);

	margin: 0 auto;
	margin-top: 25px;
	margin-bottom: 25px;

	border-radius: 15px;

	position: relative;
}

.song{
	width: 70%;
	height: 400px;

	border:2px;
	border-color: white;
	border-style: solid;

	margin: 0 auto;
	margin-top: 40px;

	position: relative;

	overflow: hidden;
}

.songImg{
	width: 100%;
	filter: blur(5px);
}

.songName{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
	color: white;

	text-align: center;

	text-shadow: 1.5px 0 1.5px #000, 
	0 1.5px 1.5px #000, 
	-1.5px 0 1.5px #000, 
	0 -1.5px 1.5px #000;
}

.progBar{
	background-color: white;
	border-radius: 5px;
	width: 90%;
	height: 10px;
	margin:0 auto;
	margin-top: 30px;
	padding: 2px;
	cursor: pointer;
}

.prog{
	background-color: #3f4fc4;
	border-radius: 5px;
	height: 6px;
}

.btns{
	display: flex;
	justify-content: space-between;
	align-items: center;

	max-width: 50%;

	margin: 0 auto;
	margin-top: 40px;


}

.prevBtn{
	transform: rotate(180deg);
	max-width: 70px;
	filter: invert(100%);
	cursor: pointer;
}

.playBtn{
	filter: invert(100%);
	max-width: 70px;
	cursor: pointer;
}

.cover{

}

.nextBtn{
	filter: invert(100%);
	max-width: 70px;
	cursor: pointer;
}

.audio{

}