/*
 * Theme — The Bell
 */

body { background-color: #202030; }

header h1 {
	color: #FFDC80;
	
	background: linear-gradient(to bottom, #FFDC80 25%, #FFF 49%, #FFDC80 51%, #FFDC80 75%, #FFF 100%);
	background-clip: text;
	color: transparent;
}

nav, footer {
	background: #C04020;
	color: #FFF;
}

nav { border-top: 1px solid #FFDC80; }

footer { border-bottom: 1px solid #FFDC80; }

nav a, footer a { color: #FFDC80; }

a { color: #C04020; }

/* Dark Mode */

@media (prefers-color-scheme: dark) {
	a { color: #FFDC80; }
}