/* Light mode */
@media (prefers-color-scheme: light) {
	body {
		background-color: white;
		color: black;
	}
}
@media (prefers-color-scheme: dark) {
	body {
		background-color: black;
		color: white;
	}
	a:link{
		color: #eeee00;
	}
	a:visited{
		color: #804040;
	}
}
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
