
/* START: /Scenes/ui/.css */
#scenesContent {
	height: 100%;
	width: 100%;

	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;

	display: grid;
	grid-row-gap: 1rem;
	grid-template-columns: 1fr;
	grid-template-rows: 4.75rem 1fr;
}
/* END: /Scenes/ui/.css */


/* START: /Scenes/login/.css */
#scenesContent {
	height: 100%;
	width: 100%;

	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;

	display: flex;
	gap: 1.5rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#scenesContent > img {
	width: 24rem;
}

#scenesContent > a {
	height: 3rem;
	width: min-content;
	min-width: 16rem;

	position: relative;
	top: 0;
	left: 0;
	z-index: 0;
	
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	color: var(--text);

	overflow: hidden;
	border-radius: 0.9375rem;
}

#scenesContent > a::before {
	content: '';

	height: 100%;
	width: 100%;

	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;

	background: var(--textMuted);
	opacity: .5;
}
/* END: /Scenes/login/.css */

