@font-face {
	font-family: 'Vanguard CF';
	src: url('fonts/VanguardCF-Bold.woff2') format('woff2'),
		url('fonts/VanguardCF-Bold.woff') format('woff'),
		url('fonts/VanguardCF-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

:root {
	--fontsize: 18px;
	--buttonfontsize: 18px;
	--gap: 24px;
}

@media(max-width: 999px) {
	:root {
		--fontsize: 18px;
		--gap: 1.5rem
	}
}

@media(max-width: 799px) {
	:root {
		--fontsize: 16px;
		--gap: 1rem;
	}
}

body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
}
body > div {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: #1e2b30;
	display: flex;
}
body > div > div {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; 
	/* mix-blend-mode: multiply; */
	mix-blend-mode: overlay;
	background: url('images/Station-TimTireSlide-BG.jpg') 70% 50%/cover;
}
body > div > section {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 90vw;
	font-family: 'Vanguard CF', Arial, Helvetica, sans-serif;
	text-align: center;
	/* padding-inline: 6rem; */
    align-self: center;
	margin: auto;
}
h1 {
	font-size: 24vmin;
	line-height: 1;
	margin: 0;
	letter-spacing: 0.25rem;
	color: rgba(0, 0, 0, 0);
	-webkit-text-stroke: 0.25rem #ffffff;
}
h2 {
	font-size: 18vmin;
	line-height: 1;
	margin: 0;
	letter-spacing: 0.25rem;
}
.logo-container {
	width: 180px;
	height: 180px;
	position: relative;
	overflow: hidden;
	margin: auto;
	padding: 2rem;
}
.logo-container img {
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}
.logo-container img.active {
	opacity: 1;
}

@media only screen and (max-width: 999px) {
	h1 {
		font-size: 20vmin !important;
		-webkit-text-stroke: 0.1rem #ffffff !important;
	}
	h2 {
		font-size: 18vmin !important;
		letter-spacing: 0.25rem !important;
	}
}
@media only screen and (max-width: 768px) {
	h1 {
		font-size: 18vmin !important;
		-webkit-text-stroke: 0.1rem #ffffff !important;
	}
	h2 {
		font-size: 16vmin !important;
		letter-spacing: 0.25rem !important;
	}
}