*{
	box-sizing: border-box;
}

body {
	margin: 0;
	background: white;
	color: black;
	font-family: Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	

	background: black;
	background-image:
		linear-gradient(
			rgba(0, 0, 0, 0.13),
			rgba(0, 0, 0, 0.13)
		),
		url("images/2E9521EC.JPG");
	background-size: cover;
	background-position:center;
	background-repeat: no-repeat;
	color: white;

	
}



.music {
	min-height: 100vh;
	padding: 40px;
	background: white;
	color: black;
}

h1 {
	font-family: Arial, sans-serif;
	font-size:70px;
	font-weight: 700;
	letter-spacing: 10px;
	margin: 0;
}

h2 {
	font-size: 48px;
	margin: 0 0 20px 0;
}

p {
	margin: 0;
}

.subtitle{
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 8px;
	text-transform: uppercase;
	margin: 0;	
}

.music-link {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

.music-link:hover {
	opacity: 0.5;
}

.music-image {
	width: 400px;
	max-width: 100%;
	margin: 20px 0;
}

.music-content {
	max-width: 800px;
	display: flex;
	gap: 40px;
	align-items: center;
	margin-bottom: 60px;
}


.music-info {
	display:flex;
	flex-direction: column;
	gap: 12px;
}

h3{
	font-size:32px;
	margin: 0 0 10px 0;
}

.hero-links {
	display:flex;
	gap: 20px;
}

.listen-link {
	color: black;
	text-decoration: none;
	font-size:14px;
	letter-spacing:2px;
}

.listen-link:hover {
	opacity: 0.5;
}

.contact {
	min-height: 100vh;
	padding: 40px;
	background: white;
	color: black;
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-label {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-link {
	color: white;
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 2px;
}

.contact-link:hover {
	opacity: 0.5;
}

.email-link {
	color: black;
	text-decoration: none;
	font-size: 20px;
	overflow-wrap: anywhere;
}

.email-link:hover {
	opacity: 0.5;
}



.release-meta {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.release-description {
	max-width: 300px;
	line-height: 1.5;
}

.about {
	min-height:100vh;
	padding: 40px;
	background: black;
	color: white;
}

.about-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.about-text {
	max-width: 400px;
	font-size: 14px;
	line-height: 1.5;
}

.about-image {
	width: 400px;
	max-width: 100%;
	height: auto;
	display: block;
}

.about-link {
	color: white;
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 2px;
}

.about-link:hover {
	opacity: 0.5;
}

.footer {
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	background: black;
	color: white;
	font-size: 12px;
}

@media (max-width: 700px) {

	.music-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.music-image {
		width: 100%;
	}

	.about-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.about-image {
		width: 100%;
	}

	h1 {
		font-size:42px;
		letter-spacing:5px;
	}

	.hero {
		padding: 20px;
		text-align: center;
	}

	.footer {
		flex-direction: column;
		gap: 10px;
	}

}