@font-face {
	font-family: "Brandon";
	font-style: normal;
	font-weight: 400;
	/* src: url("../fonts/Brandon_reg.otf") format("opentype"); */
	src: local("Brandon"), url("../fonts/Brandon_reg.otf") format("opentype");
	font-display: swap;
}

.dark-theme {
	--body-background: #261201;
	--text-color: #dbddd0;
}

.light-theme {
	--body-background: #dbddd0;
	--text-color: #261201;
}

body {
	font-family: Brandon, sans-serif;
	color: var(--text-color);
	background-color: var(--body-background);
	margin: 1% 2%;
	padding: 0;
}

.colors {
	display: flex;
	flex-direction: row;
}

.top-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 2%;
	align-items: baseline;
}

.theme-picker button,
.format-picker button {
	padding: 0 .35rem;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--text-color);
}

.container {
	display: flex;
	height: 100px;
	padding-bottom: 1%;
}

.box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: 20%;
	font-size: 1.2em;
	align-items: flex-end;
}

h1 {
	margin: 0
}

h2 {
	width: 100px;
	font-size: 1.5em;
	align-items: flex-center;
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: baseline;
	margin: 1% 0;
}

.footer-item {
	margin: 0 100px;
}

a:-webkit-any-link {
	color: var(--text-color);
}