html {
	margin: 0;
	padding: 0;
	color: #eee;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 300;
	background-color: #0b001a;
}

body {
	margin: 0;
	padding: 0;
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: #0b001a;
	background: linear-gradient(to bottom, hsl(265, 100%, 5%), hsl(265, 25%, 10%));
}

img.logo {
	display: block;
	margin: 0 auto;
	max-width: 50%;
}

h1 {
	font-size: 3rem;
	margin:0;
	margin-top: 4rem;
	font-weight: 300;
	text-align: center;
}

h2 {
	font-size: 1.5rem;
	margin: 0;
	font-weight: 300;
	text-align: center;
}

div.album-info {
	width: 75%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	gap: 4rem;
}

div.album-art-container {
	display: flex;
	flex-direction: column;
	gap: 0px;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

img.album-art {
	width: 300px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

div.waveform-display {
	height: 40px;
	width: 256px;
}

ol.album-track-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	width: 400px;
	align-items: stretch;
	margin-bottom: 3rem;
}

ol.album-track-list li {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

ol.album-track-list li h3 {
	font-size: 1.5rem;
	margin: 0;
	margin-top: 1rem;
	font-weight: 300;
}

div.download-links {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

div.download-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	border-radius: 4px;
	padding: 0.5rem 1rem;
	background-color: hsl(265, 66%, 50%);
	text-align: center;
	font-weight: normal;
	font-size: 150%;
	width: 75px;
}
div.download-links a:hover {
	background-color: hsl(265, 50%, 55%);
	color: hsl(265, 100%, 95%);
}

p.fine-print {
	font-size: 0.8rem;
	color: #aaa;
	text-align: center;
	margin-top: 3rem;
}

@media (max-width: 768px) {
	body {
		padding-top: 2rem;
	}
	h1.album-title {
		font-size: 2rem;
		margin-top: 2rem;
	}
	div.album-info {
		flex-direction: column;
		gap: 2rem;
		width: 90%;
	}

	div.album-art-container {
		flex-direction: row;
		gap: 0.5rem;
	}
	img.album-art {
		width: 50%;
		max-width: 300px;
	}
	ol.album-track-list {
		width: 100%;
	}
	ol.album-track-list li:last-child {
		align-items: center;
	}
}