#banner{
	height: 600px;
	position: relative;
	overflow: hidden;
}
#banner .banner-text{
	z-index: 2;
}
#banner .overlay,
#banner .banner-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#banner .overlay{
	background: linear-gradient(0deg, rgba(34, 34, 34, 1) 0%,rgba(34, 34, 34,0) 40% 60%, rgba(34, 34, 34, 1) 100%);
	z-index: 1;
}
#banner .banner-image{
	background-image: url('fanshop.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	filter: grayscale(1) blur(2px);
	z-index: 0;
	opacity: .1;
	transition: scale .24s ease-in-out;
}
#banner h2{
	font-family: var(--vfl-font-family-secondary);
	font-size: 126px;
	color: var(--vfl-color-contrast);
	margin-bottom: 28px;
	transition: all .24s ease-in-out;
}
#banner:hover .banner-image{
	scale: 1.05;
}
#banner:hover h2{
	rotate: -3deg;
	scale: 1.2;
}
@media screen and (max-width: 640px) {
	#banner{
		height: 400px;
	}
	#banner h2{
		font-size: 60px;
	}
	#banner .banner-text > div:first-child{
		font-size: var(--vfl-font-size-big);
	}
}