:root{

	--background: #eadfc1;
	--header: #fdc04b;
	--header-font: #296055;
	--border: #f47f88;
	--footer: #9cd18b;
	--borders: #fd8701;
	--focused: #dad789;
	--text: #ff6c3b;
	--headers: #65b0a5;
}


.darkMode{
	--background: #15203b;
	--header: #03203c;
	--header-font: #d6f6dd;
	--border: #0b71a1;
	--footer: #63264a;
	--borders: #02c39a;
	--focused: #252e54;
	--text: #009688;
	--headers: #9a9a9a;
	}


*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

* {
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}
body {
	line-height: 1;
}
header{
	font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	background-color: var(--header);
	border-bottom: .5rem dotted var(--border);
	color: var(--header-font);
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

#toggleBtn{
	background-color: transparent;
	border: 0;
	font-size: 2rem;
}

a:hover{
	color: var(--background);
}