/* #region Artwork */
#galleryContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.galleryFrame {
	margin: 0.5px;
	aspect-ratio: 1 / 1;
	max-width: 15rem;
}

.image-button {
	display: block;
	width: 100%;
	height: 100%;
}

.thumbnail {
	border-radius: 1px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#overlay {
	display: flex;
	position: fixed;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	z-index: 10000;
	transition:
		opacity 0s ease,
		visibility 0.1s linear 0s;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

#overlay.active {
	visibility: visible;
	opacity: 1;
}
#overlay.active ~ #centeredContent {
	visibility: hidden;
}
#overlay.active ~ * {
	filter: blur(1rem);
}

#overlay img {
	cursor: zoom-out;
	box-shadow: 0 0 20px black;
	border-radius: 2px;
	max-width: 80%;
	max-height: 80%;
}

@media (width <=900px) {
	.galleryFrame {
		width: 15rem;
		max-width: 33%;
	}
	#overlay img {
		max-width: 100%;
		max-height: 100%;
	}
}

/* #endregion */
/* #region other */
.flex {
	display: flex;
	width: 100%;
}

.songWrap {
	width: 25%;
	text-align: center;
}

.songWrap td {
	display: flex;
	margin: 20px;
	border: solid var(--border-color) 2px;
	border-radius: 6px;
	background-color: rgb(255 255 255 / 20%);
}

.songCover {
	box-shadow: 0 1px 6px black;
	border-radius: 6px;
	width: 32px;
}

#audiosource {
	width: 100%;
}

.visualizerWrap {
	width: 75%;
}

#wavcontainer {
	margin-bottom: 20px;
	border: solid var(--border-color) 4px;
	border-radius: 20px;
	height: 350px;
	overflow: hidden;
}
/* #endregion */
