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

html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #111;
	font-family: sans-serif;
	color: rgba(255, 255, 255, 0.5);
}

a {
	color: rgba(255, 255, 255, 0.5);
}

a:hover {
	color: rgba(255, 255, 255, 0.8);
}

main {
	display: block;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

.content {
	position: absolute;
	inset: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.glitched-waves {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	position: relative;
}

.glitched-waves canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	visibility: hidden;
}

.glitched-waves canvas.visible {
	visibility: visible;
}

.content .album {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.content .album img {
	border: 0;
	display: block;
	box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
}

.content .album img:hover {
	box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.4);
}

.content .album .cover {
	margin-bottom: 20px;
}

.content .album .cover img {
	width: min(500px, 80vw);
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.content .album .links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.content .album .links a {
	padding: 10px;
}

.content .album .links img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	opacity: 0.7;
}

.content .album .links img:hover {
	opacity: 0.95;
	box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
}

.content .social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
	font-weight: 400;
	text-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
}

.content .social a {
	text-decoration: none;
}

@media (max-width: 480px) {
	body {
		min-height: 100%;
		height: auto;
	}

	.content .album .links img {
		width: 30px;
		height: 30px;
	}
}
