/* Intro
======================================== */
#intro{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100%;
	padding: var(--m-top) var(--page-sides) var(--page-bottom);
	display: grid;
	align-items: center;
	justify-content: center;
	-webkit-user-select: none;
		-moz-user-select: none;
		 -ms-user-select: none;
			  user-select: none;
	background-color: var(--color-bg);
	cursor: pointer !important;
	cursor: wait;
	z-index: 12;
}
#intro-thumb{
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	object-fit: cover;
	pointer-events: none;
}
#intro h1{
	color: white;
	mix-blend-mode: difference;
	pointer-events: none;
}
