:root {
	background-color: #000;
	color: #fff;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
	margin: 0;
	padding: 0;
}

/* Polyfills */
/* https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/Heading_Elements#specifying_a_uniform_font_size_for_h1 */
h1 {
	margin-block: 0.67em;
	font-size: 2em;
}

/* Utility */

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/* Basics */

a {
	text-decoration: none;
	color: white;
}

a:visited {
	color: white;
}

section {
	margin-block-start: 4em;
	text-align: center;
}

/* section:first-child {
    margin-block-start: 0;
} */

p {
	margin-block: 0.3em;
}

footer {
	background: black;
	overflow: hidden;
	min-height: 50vh;
}

.fade {
	--fade-height: min(25vw, 300px);
	width: 100%;
	margin-top: calc(var(--fade-height) * -1);
	height: var(--fade-height);
	background-image: linear-gradient(transparent, #000);
}

.content {
	background: black;
	overflow: hidden;
}

/* Hero Banner / Album Cover */

@keyframes appear {
	0% {
		opacity: 0;
		transform: translateY(-1em);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero {
	position: sticky;
	z-index: -1;
	top: 0;
	width: 100%;
	height: 90vh;
	max-height: 55vw;
	overflow: hidden;
}

.hero .hero-bg {
	z-index: -1;
	width: 100%;
	position: absolute;
}

.hero .hero-logo {
	z-index: -1;
	position: absolute;
	left: 15%;
	right: 15%;
	top: 17%;
	animation: appear 4s;
}

/* insta */
.insta-button {
	display: flex;
	flex-flow: nowrap row;
	justify-content: space-evenly;
	align-items: center;

	width: fit-content;

	margin-inline: auto;
	margin-block: 1.5em;

	padding: 0.5em 1em;
	border: 1px solid #fff4;
	border-radius: 0.5em;
	transition: border-color 0.5s ease-out;
}

.insta-button > * {
	margin: 0.5em 1em;
}

.insta-button:hover {
	border-color: #fff;
}

.insta-logo {
	display: block;
	min-width: 29px;
	min-height: 29px;
	width: 1.5em;
	height: 1.5em;
}

/* Cover Artwork */
.cover {
	width: 3cm;
	height: 3cm;
	margin: 0.5em;
	transition: transform 0.5s ease-out;
}

.cover:hover {
	z-index: 1;
	transform: scale(1.2);
	box-shadow: 0 0 3em black;
}

.cover .cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.1em;
}
