/* latin-ext */
@font-face {
	font-family: 'Atkinson Hyperlegible Mono';
	font-style: italic;
	font-weight: 200 800;
	font-display: swap;
	src: url(/asset/font/atkinsonhyperlegiblemono-italic-latin-ext.woff2)
		format('woff2');
	unicode-range:
		U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
		U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Atkinson Hyperlegible Mono';
	font-style: italic;
	font-weight: 200 800;
	font-display: swap;
	src: url(/asset/font/atkinsonhyperlegiblemono-italic-latin.woff2)
		format('woff2');
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
	font-family: 'Atkinson Hyperlegible Mono';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url(/asset/font/atkinsonhyperlegiblemono-normal-latin-ext.woff2)
		format('woff2');
	unicode-range:
		U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
		U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Atkinson Hyperlegible Mono';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url(/asset/font/atkinsonhyperlegiblemono-normal-latin.woff2)
		format('woff2');
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--panelColor: #282c34;
}

input[type='text'],
input[type='password'],
input[type='number'] {
	border: 0.1rem solid rgba(0, 0, 0, 0.5);
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	margin: 0.2rem;
}
input[type='submit'],
button {
	border: 0.1rem solid rgba(0, 0, 0, 0.5);
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
}
input[type='submit']:hover,
button:hover {
	background-color: rgba(255, 255, 255, 0.25);
}
input[type='submit']:active,
button:active {
	background-color: rgba(0, 0, 0, 0.1);
}

a {
	color: white;
}

body {
	font-family: 'Atkinson Hyperlegible Mono', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;

	margin: 0;
	padding: 0.5rem;

	background: rgb(25, 25, 25);
	color: white;

	display: flex;
	flex-direction: column;
}

main {
	display: flex;
	flex-direction: column;
}
header {
	background-color: var(--panelColor);
	margin-bottom: 0.5rem;
	padding: 1rem;
	display: flex;
}
.header-title {
	display: flex;
	align-self: center;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	padding-right: 0.5rem;
	margin-right: 0.5rem;
	border-right: 0.25rem solid rgba(0, 0, 0, 0.5);
}
.header-nav {
	position: relative;
	top: 0.3rem;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-self: center;
}
.header-nav-item {
	padding: 0.5rem;
	background-color: rgba(0, 0, 0, 0.25);
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.center {
	text-align: center;
}
