/* Vars
==================================== */
#intro{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--cbg);
}
#intro.cover{
	z-index: 12;
}
#intro.cover .thumb{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#intro.contain{
	z-index: 8;
}
#intro.contain .thumb{
	width: calc((100vw - var(--sides)*2)/2);
	max-width: 1000px;
	padding: var(--sides);
}
@media (max-width: 1180px),
		 (min-width: 1181px) and (orientation: portrait){
	#intro.contain .thumb{
		width: 100%;
	}
}
