body {
	font-family: "Inter";
	margin: 0;
	background: #121212;
	color: #fff;
}
header {
	text-align: center;
	padding: 2rem 1rem;
	color: #fffce2;
	background: #000000;
	padding-top: 3rem;
	margin-bottom: 1rem;
}
.announce {
	padding: 1rem;
	max-width: calc(800px - 2rem);
	margin: auto;
	text-align: center;
	margin-top: -43px;
	background: rgb(101 0 0);
}
h1 {
	margin-bottom: 0.5rem;
}
h2 {
	font-family: 'Metal Mania';
	font-size: 32px;
	font-weight: 400;
	color: #ebe8d3;
	margin-top: 10px;
	display: flex;
  align-items: center;
	line-height: 32px;
}
h2 img {
	margin-left: 12px;
	margin-right: 12px;
}
nav a {
	margin: 0 1rem;
	color: #ff6f61;
	text-decoration: none;
}
.links {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}
.links a {
	text-decoration: none;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	line-height: 14px;
	font-size: 15px;
}
.links a i {
	margin-right: 5px;
}
a {
	color: #fffce2;
}
section {
	padding: 2rem 1rem;
	padding-bottom: 1rem;
	max-width: 800px;
	margin: auto;
}
.music-embed iframe {
	width: 100%;
	height: 120px;
	border: none;
}
.tile {
	text-align: justify;
	border-radius: 10px;
	padding: 20px;
	background-color: #000000;
	display: flex;
	align-items: center;
}
.tile-header {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.tile-title {
	font-family: 'Playfair Display';
	font-size: 24px;
}
.tile-desc {
	font-family: 'Inter';
	font-size: 15px;
	margin-top: 3px;
	margin-right: 30px;
}
footer {
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
	background: #1f1f1f;
	color: #aaa;
	margin-top: 2rem;
}
audio {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}

@media (max-width: 900px) {
	.tile {
		flex-direction: column!important;
		align-items: self-start;
	}
	.tile-desc {
		margin-bottom: 15px!important;
	}
}
.mb-5 {
	margin-bottom: 5px;
}
.tile ul {
	text-align: left;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 5px;
}

.gallery a {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}