:root{
	--black: #212427;
	--white: #F5F5F5;
	--bg: var(--black);
	--text: var(--white);
	--accent: #008080;
}

@media (prefers-color-scheme: light) {
	:root{
		--bg: var(--white);
		--text: var(--black);
		--accent: #004953;
	}
}

html, body{
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	background-color: var(--bg);
}

html{
	overflow-y: auto;
}

article{
	width: 80%;
	height: 100%;
	overflow: hidden;
	background-color: var(--bg);
	color: var(--text);
	padding-left: 10%;
	padding-right: 10%;
	font-family: 20px;
}

p{
	text-align: justify;
}

a{
	color: var(--accent);
}

#sidebar{
	display: none;
	position: absolute;
  	font-family: monospace;
	rotate: -90deg;
	width: 100vw;
	right: -10px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}

#sidebar a{
	padding-left: 1rem;
	padding-right: 1rem;
	text-decoration: none;
	font-size: 20px;
}

h1, h2, h3, h1 b{
	font-family: serif;
}

p, a, b, li{
	font-family: sans;
}
