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

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #d7c18a;
}

header {
	position: relative;
	height: 100vh;
	background: url('bg.png') top/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: normal;
	text-align: left;
	color: white;
	padding: 1rem;
}

header.subpage {
	height: 30vh;
	background: url('bg.png') center/cover no-repeat;
}

header::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}

header h1, header h2, header h3 {
	position: relative;
	font-family: 'Great Vibes', cursive;
	word-spacing: 1rem;
	z-index: 1;
	padding-left: 8%;
	margin-top: 50px;
}

header h1 {
	font-size: 5rem;
}

header h2 {
	font-size: 4rem;
}

header h3 {
	font-size: 2rem;
	margin-top: 0;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.7);
	padding: 0.75rem 2rem;
	display: flex;
	justify-content: center;
	z-index: 1000;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s;
}

nav a:hover {
	color: #f2d16b;
}

section {
	max-width: 900px;
	margin: 4rem auto;
	padding: 0 1.5rem;
	align-items: center;
}

div.audio {
	display: flex;
    align-items: center;
    justify-content: center;
}

.label {
	font-size: 1.5rem;
	padding: 10px 30px;
}

#about {
	font-size: 1.5rem;
}

section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: 700;
}

section p {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 1.2rem;
}

ul {
  display: table;
  margin: 0 auto;
}

footer {
	text-align: center;
	background: #111;
	color: #ccc;
	padding: 1.5rem;
	margin-top: 3rem;
}

/* Mobile nav */
@media (max-width: 768px) {
	header h1 {
		font-size: 2.5rem;
	}
	header h2 {
		font-size: 2rem;
	}
}
