@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
}

.song-name {
	font-size: 1rem;
	color: #E5E7EB;
}

.author-name {
	font-size: 0.75rem;
	color: #4D5562;
}

.small-text {
	font-size: 0.625rem;
	color: #4D5562;
}

/* Add some styles for body*/
body {
	min-height: 100vh;
	margin: 0 auto;
	background: url('../images/gradient-bg.jpg') center center no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 0.5rem;
	column-gap: 1.5rem;
}

.card {
	width: 345px;
	height: 520px;
	background-color: #121826a6;
	border-radius: 15px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.cover {
	width: 100%;
  height: auto;
	border-radius: 15px;
}

/*
	filter: drop-shadow(0px 8px 16px rgba(201, 59, 118, 0.25));
*/

input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 25px;
	filter: drop-shadow(0px 8px 16px rgba(201, 59, 118, 0.25));
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: #E5E7EB;
  border-radius: 15px;
	filter: drop-shadow(0px 8px 16px rgba(201, 59, 118, 0.25));
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 5px;
  width: 10px;
  border-radius: 20px;
  background-color: #c93b76;
  box-shadow: -407px 0 0 400px #c93b76;
	filter: drop-shadow(0px 8px 16px rgba(201, 59, 118, 0.25));
}

.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.prev-btn {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.play-btn, .pause-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
  background-color: #C93B76;
	filter: drop-shadow(0px 8px 16px rgba(201, 59, 118, 0.25));
	display: flex;
	justify-content: center;
	align-items: center;
}

.next-btn {
	width: 50px;
	height: 50px;
	margin-left: 10px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
