.color {
	color: var(--darkAccent);
}

div.content > h2 {
 margin-bottom: 0;
 margin-top: 4rem;
}

header {
	height: 130px;

	.title {
		display: flex;
		flex-direction: column;
		align-self: center;
		text-align: center;
	}

	h1 {
		margin-bottom: 0;
	}

	p {
		margin-top: 0.5rem;
	}
}

div#important {
	padding: 20px;
	background-color: var(--contentBackground);
	border: 5px solid var(--darkAccent);
	border-radius: 5px;
	text-align: center;
}

div.content {
	display: flex;
	flex-direction: column;
}

img#sakura-mari {
	min-width: 0%;
	width: 70%;
	height: auto;
	align-self: center;
}

div#merch {
	display: flex;
	flex-direction: row;
	height: 450px;
	width: 100%;

	input {
		display: none;
	}

	img {
		min-width: 377px;
	}

	&>div {
		position: relative;
		overflow: hidden;
		width: 10%;
		height: 100%;
		filter: brightness(0.5);
		cursor: pointer;
		transition-duration: 0.5s;

		&:has(input:checked) {
			width: 80%;
			filter: brightness(1);

			label {
				margin-left: -15px;
			}

			p {
				display: block;
			}
		}

		p {
			display: none;
			margin-left: 1.5rem;
			white-space: nowrap;
			position: absolute;
			bottom: 0;
			color: #fff;
			pointer-events: none;
		}

		label {
			height: 100%;
			display: flex;
			flex-direction: row;
			margin-left: -150px;
			transition-duration: 0.5s;
		}
	}
}

a#artist-gallery {
	display: flex;
	flex-direction: row;

	div#artist-sampler {
		img {
			min-width: 0;
			width: 100px;
			height: auto;
			border-radius: 100px;
			margin-right: 10px;
		}
	}

	div:last-child {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

div#collaborating-clubs {
	img {
		height: 50px;
		min-width: 0%;
		width: auto;
		margin-right: 10px;
	}

	&>div {
		padding: 20px 0;
		border-bottom: 3px solid var(--darkAccent);

		&>div:first-child {
			display: flex;
			flex-direction: row;
			align-items: center;
			cursor: pointer;

			&>*:last-child {
				color: var(--darkAccent);
				font-family: Arial, Helvetica, sans-serif;
				margin: 0;
				margin-left: auto;
				margin-right: 20px;
			}
		}

		&>div:last-child {
			height: 0;
			overflow: hidden;
			transition: height 0.3s ease;
		}
	}
}

object {
	height: 500px;
}

@media only screen and (orientation: portrait) {
	div#artist-sampler {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;

		img {
			width: 40% !important;
			height: auto;
			margin-bottom: 10px;
		}
	}

	div#merch {
		height: 200px;

		img {
			min-width: 160px;
		}

		p {
			margin-left: 7px !important;
			font-size: small;
		}
		span {
			display: block;
		}

		&>div:has(input:checked) label {
			margin-left: -10px !important;
		}

		label {
			margin-left: -65px !important;
		}
	}
}