body {
	font-family: 'Short Stack', cursive;
	background:
		linear-gradient(to right, #fef6f7 2px, transparent 1px),
		linear-gradient(to bottom, #fef6f7 2px, transparent 1px),
		#ffe6de;
	background-size: 40px 40px;
	color: #b07255;
	margin: 0;
	padding: 0;
	user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	-webkit-tap-highlight-color: transparent;
}

.music-player {
	max-width: 50%;
	width: 100%;
	margin: 0px auto;
	background-color: #fef6f7;
	padding: 30px;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 5px solid rgba(255, 230, 222, 0.6);
	overflow: hidden;
}

.upload {
	margin-top: 24px;
	margin-bottom: 16px;
	overflow: hidden;
	text-align: center;
}

.upload-button {
	display: inline-block;
	background-color: #ffbea9;
	color: white;
	border: none;
	border-radius: 32px;
	padding: 10px 12px;
	font-size: 16px;
	cursor: pointer;
	font-size: 0.8em;
	transition: background-color 0.3s;
}

.upload-button:hover {
	background-color: #e09c83;
}

.thumbnail {
	width: 240px;
	height: 240px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	margin: 20px auto;
	background-color: #f7d7cd;
	transition: transform 0.3s ease-in-out;
	font-size: 3em;
	color: #b07255;
}

.thumbnail:hover {
	transform: scale(1.05);
}

.song-info {
	margin-bottom: 20px;
}

#song-title {
	font-size: 1.5em;
	color: #b07255;
	margin-top: 20px;
	text-align: center;
}

.progress-bar-thing {
	margin: 20px 0;
}

.progress-bar {
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background-color: #f1d4c8;
	outline: none;
	position: relative;
}

.progress-bar::-webkit-slider-thumb {
	appearance: none;
	width: 8px;
	height: 16px;
	border-radius: 30%;
	background-color: #ffbea9;
	cursor: pointer;
	border: 2px solid white;
	position: relative;
}

.time-stamps {
	display: flex;
	justify-content: space-between;
	font-size: 0.80em;
	color: #b07255;
}

.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 180px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.controls button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-size: 1.8em;
	color: #b07255;
	transition: transform 0.2s ease-in-out;
}

.controls button:hover {
	transform: scale(1.1);
}

.controls button.play-btn {
	width: 80px;
	height: 80px;
	background-color: #ffe6de;
	color: #b07255;
	font-size: 2.5em;
	border: none;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
}

.controls button.play-btn i {
	margin: 0;
}

.controls button.play-btn:hover {
	transform: scale(1.1);
}

.controls button.play-btn:active {
	transform: scale(0.95);
}

.hidden {
	display: none;
}

@media (max-width: 768px) {
	.music-player {
		padding: 25px;
		max-width: 90%;
		width: 75%;
	}

	#song-title {
		font-size: 1.4em;
	}

	.controls button {
		font-size: 1.5em;
	}

	.thumbnail {
		width: 200px;
		height: 200px;
	}

	.upload {}
}

@media (max-width: 480px) {
	body {
		flex-direction: column;
	}

	.music-player {
		padding: 15px;
		max-width: 90%;
		margin: 48px auto;
	}

	.controls button {
		font-size: 1.4em;
		padding: 12px;
	}

	.controls button.play-btn {
		width: 60px;
		height: 60px;
		font-size: 2em;
	}

	.thumbnail {
		width: 160px;
		height: 160px;
	}

	.song-info {
		font-size: 0.9em;
	}
}

@media (orientation: landscape) {
	.music-player {
		transform: scale(0.65);
	}

	@media (max-height: 420px) {
		.music-player {
			transform: scale(0.55);
		}
	}
}