@media (prefers-color-scheme: dark)
{
	:root
	{
		--bg: #1a1a1a;
		--fg: #eee;
		--ac: #4ca650
	}
}
@media (prefers-color-scheme: light)
{
	:root
	{
		--fg: #1a1a1a;
		--bg: #eee;
		--ac: #4ca650
	}
}

a {
	color: var(--fg);
	margin-top: 5px;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	display: inherit;
	justify-content: center;
	align-items: center;
	font-size: inherit;
	font-weight: bold;
	border: inherit;
}
