:root {
	--banner-blend: #00000080;
	--banner-height: 30vh;
}

main {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.banner {
	height: var(--banner-height);
	width: 100%;

	background-image: url("./concerts-banner.png");
	background-size: cover;
	background-position: top;
	background-color: var(--banner-blend);
	background-blend-mode: darken;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;

	animation-duration: 1s;
	animation-delay: 0.5s;
}

.banner > p {
	margin: 1vmin;
	animation-duration: 0.25s;
	animation-delay: 1s;
}

main::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: var(--banner-height);
	z-index: -1;

	background-color: #000;
}

table .error p {
	background-color: #ecc;
	text-align: center;
}

table h4 {
	font-family: serif;
	font-size: 14pt;
	line-height: 1.75;
	color: var(--main-text);
	font-weight: 300;
}

table h1 {
	margin-bottom: 2vh;
	font-size: 20pt;
}

table h4:last-of-type {
	margin-bottom: 2vh;
}

@media (max-width: 1400px) {
	tr > td:first-of-type{
		padding: 5vh 12.5vmin 2.5vh 12.5vmin;
	}

	td{
		text-align: center;
		align-items: center;
		justify-content: center;
		max-width: 90vw;
	}

	.concertImage, .noConcertImage{
		width: 75vmin;
	}

	.concertImage{
		height: 75vmin;
	}

	/*
	.concertPassed::after {
		width: 106.066vmin;
		height: 106.066vmin;
	}
	*/
}
