/* Variables */
:root {
	--size: 12px;
	--border: 2px;

	--text: #323232;
	--body: #F2F2F7;
	--box: #FCFCFC;
}
@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;

		--text: #EEEEEE;
		--body: #19191F;
		--box: #131317;
	}
}



/* Fonts */
@font-face {
	font-family: 'Raleway';
	src: url('/assets/ralewayRegular.woff2') format('woff2');
	font-style: normal;
	font-weight: 400;
}



/* General */
html {
	background: var(--body);
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Raleway';
	font-size: var(--size);
	color: var(--text);
}
.container {
	width: 100%;
	height: 100vh;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.hidden {
	display: none;
}
.title {
	font-size: 3rem;
}
.subtitle {
	font-size: 3rem;
	opacity: 0.5;
}
