*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-family: var(--app-font-secondary);
	font-size: 16px;
	line-height: 1.5;
	color: var(--app-text);
	background: var(--app-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
	min-height: 100dvh;
	height: 100%;
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--app-color-info);
	text-decoration: none;
}

button {
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	border: 1px solid var(--app-border);
	border-radius: var(--app-radius);
	background: none;
	color: var(--app-text);
	padding: 0.4em 0.8em;
	line-height: 1.4;
}

button:hover {
	border-color: var(--app-text);
}

input[type='text'],
input[type='number'],
input[type='email'],
input[type='password'],
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em 0.6em;
	border: 1px solid var(--app-border);
	border-radius: var(--app-radius);
	background: var(--app-bg);
	color: var(--app-text);
}

input[type='range'] {
	accent-color: var(--app-color-info);
}

input[type='checkbox'] {
	accent-color: var(--app-color-info);
}

pre {
	font-family: var(--app-font-mono);
	white-space: pre-wrap;
	word-break: break-all;
}

small {
	font-size: 0.85em;
}

strong {
	font-weight: bold;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Utility */

.container-fluid {
	width: 100%;
}
