@charset "utf-8";
body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: #eaeaea;
	background: #aa2f7d;
	background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba') center/cover no-repeat fixed;
}
.container {
	max-width: 900px;
	margin: auto;
	padding: 60px 20px;
}
h1 {
	font-weight: 300;
	margin-bottom: 40px;
}
.artist {
	margin-bottom: 60px;
	padding: 30px;
	border-radius: 20px;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	transition: 0.3s;
}
.artist:hover {
	transform: scale(1.02);
}
.artist h2 {
	margin-bottom: 20px;
	font-weight: 400;
}
.links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.links a {
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
	transition: 0.3s;
}
.links a:hover {
	background: rgba(255,255,255,0.1);
}
.back {
	margin-top: 40px;
	display: inline-block;
	opacity: 0.6;
}