* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #1e1e1e;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.wrapper {
	background-color: #282828;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.player {
    background-color: #232323;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 20px;
}


.player__info {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    margin-bottom: 10px;
}




.player__details {
	display: flex;
	flex-direction: column;
}

.player__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.player__artist {
	font-size: 16px;
}

.player__controls {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.player__progress-bar {
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #282828;
	margin-bottom: 20px;
}

.player__progress-bar__current-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #1db954;
}
.player__volume-thumb {
    position: absolute;
    top: 58.5%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
}

.player__buttons {
	display: flex;
	align-items: center;
}

.player__button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: white;
	border: none;
	cursor: pointer;
}
.player__button--play {
    background-color: #ff3b30;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: relative;
}

.player__button--play::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 24px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    left: 21px;
    top: 14px;
}

.player__button--pause {
    background-color: #ff3b30;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: relative;
}

.player__button--pause::before,
.player__button--pause::after {
    content: '';
    background-color: #ffffff;
    position: absolute;
    top: 22px;
    width: 10px;
    height: 20px;
}

.player__button--pause::before {
    left: 17px;
}

.player__button--pause::after {
    left: 33px;
}

.player__volume {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.player__volume-slider {
    width: 100%;
    height: 6px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
}

.player__volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
}

.player__volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
}




