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

body {
	background-color: #0f1115;
	color: #e6e6e6;
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

.hero {
	height: 320px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.7),
			rgba(0, 0, 0, 0.7)),
		url("../assets/hero.jpg");

	background-size: cover;
	background-position: center;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
}

.overlay h1 {
	font-size: 4rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.tagline {
	font-size: 1.2rem;
	color: #bbbbbb;
}

.navbar {
	display: flex;
	justify-content: center;
	gap: 20px;

	padding: 20px;

	background-color: #161a22;

	position: sticky;
	top: 0;
}

.navbar a {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}

.navbar a:hover {
	color: #4da3ff;
}

.container {
	max-width: 1000px;
	margin: auto;
	padding: 40px 20px;
}

section {
	margin-bottom: 80px;
}

h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.card-grid {
	display: grid;
	grid-template-columns:
		repeat(auto-fit,
			minmax(280px, 1fr));

	gap: 20px;
}

.card {
	background-color: #1a1f29;
	padding: 25px;
	border-radius: 10px;
	border: 1px solid #2b3442;
}

.card h3 {
	margin-bottom: 15px;
}

.card p {
	margin-bottom: 20px;
}

.music-track {
	background-color: #1a1f29;
	padding: 25px;
	border-radius: 10px;
	border: 1px solid #2b3442;
}

.music-track h3 {
	margin-bottom: 15px;
}

.music-track audio {
	width: 100%;
	margin-bottom: 15px;
}

.button {
	display: inline-block;

	padding:
		12px 20px;

	background-color: #2563eb;
	color: white;

	text-decoration: none;

	border-radius: 6px;

	margin-top: 10px;
}

.button:hover {
	background-color: #1d4ed8;
}

footer {
	text-align: center;
	padding: 30px;
	background-color: #161a22;
	color: #999999;
}