*, *::before, *::after {
	box-sizing: border-box;
}

body {
	background-color: #0d0d0d;
	color: #e0e0e0;
	width: 100%;
	margin: 0;
	font-family: "Google Sans", sans-serif;
	line-height: 1.7;
}

main {
	max-width: 620px;
	padding: 0 24px;
	margin: 0 auto;
}

/* Banner */

.banner-wrapper {
	width: 100%;
	background-color: white;
	padding-bottom: 20px;
}

.banner {
	width: 100%;
	max-width: 620px;
	display: block;
	margin: 0 auto;
}

/* Typography */

h1 {
	font-size: 3.5em;
	letter-spacing: 0.04em;
	margin-bottom: 0.1em;
	color: #ffffff;
}

h2 {
	font-size: 1.6em;
	color: #c8c8c8;
	font-weight: 400;
	margin-top: 2em;
}

h3 {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #666;
	margin-top: 2.5em;
}

p {
	color: #a0a0a0;
}

/* Album covers */

.dla-siebie-okladka {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 16px 0;
}

.container-okladka {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container-okladka a {
	display: block;
	overflow: hidden;
}

.container-okladka a img {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.container-okladka a:hover img {
	transform: scale(1.05);
	opacity: 0.8;
}

.container-okladka-label {
	text-align: center;
	font-size: 0.75em;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #666;
	padding: 10px 0 4px;
}

.dla-siebie-okladka img {
	width: 220px;
	height: 220px;
	display: block;
}

/* Member quote */

.member-quote {
	display: flex;
	flex-wrap: wrap;
	margin: 3em 0;
}

.member-quote-photo {
	width: 100%;
	display: block;
	filter: grayscale(25%);
}

.member-quote-text {
	width: 100%;
	padding: 24px;
	background-color: #111;
	border-left: 3px solid #444;
	color: #bbb;
	font-size: 1.05em;
	line-height: 1.8;
}

.member-quote-text em {
	display: block;
	margin-bottom: 0.8em;
}

.member-quote-text b {
	color: #666;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Footer */

footer {
	width: 100%;
	background-color: white;
	padding: 2em 24px 3em;
	margin-top: 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.social-media {
	display: flex;
	gap: 4px;
	margin-bottom: 1.5em;
}

.social-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

img.social-icon {
	width: 28px;
	height: 28px;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

img.social-icon:hover {
	opacity: 1;
}

.copyright {
	font-size: 0.78em;
	color: #888;
	letter-spacing: 0.05em;
}

/* Mobile */

@media (max-width: 480px) {
	h1 {
		font-size: 2.4em;
	}

	h2 {
		font-size: 1.3em;
	}

	.dla-siebie-okladka img {
		width: 160px;
		height: 160px;
	}
}
