:root {
	/* --background: #00271F; */
	/* --background: #021B22; */
	--background: #011313DD;
	/* --foreground: #013A2B; */
	/* --foreground: #0F3351; */
	--foreground: #839395;
	/* --highlight: #28547D; */
	--highlight: #508767;
}

@font-face {
	font-family: ibm-mono;
	src: url(/fonts/IBMPlexMono-Regular.ttf);
}

@font-face {
	font-family: ibm-mono;
	src: url(/fonts/IBMPlexMono-Bold.ttf);
	font-weight: bold;
}

body {
	background-image: url(/images/Blue-Green-Lines.jpg);
	backdrop-filter: blur(16px);
	background-size: cover;
	color: var(--foreground);
	font-size: 1.3em;
        /* font-family: "IBM Plex Mono", monospace; */
        font-family: ibm-mono, monospace;
	height: 100vh;
	margin: 0;
	padding: 0;
}

main {
	max-width: 45em;
	margin: 0 auto;
	padding: 0 1rem;
	background-color: var(--background);
	backdrop-filter: blur(8px) saturate(180%);
}

section div {
	margin-left: 4em;
	margin-bottom: 1em;
}

a {
	color: var(--highlight);
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	background-color: var(--foreground);
	color: var(--background);
}

button {
	border: none;
	display: inline-block;
	cursor: pointer;
	font-size: 1em;
	background: none;
	color: var(--foreground);
}

button:hover {
	background-color: var(--foreground);
	color: var(--highlight);
}

/* In the terminal all text has the same height */
h1, h2, p {
	font-size: 1em;
	margin-top: 0;
	margin-bottom: 0;
}

.indented {
	margin-left: 2em;
	margin-bottom: 1em;
}

.cmd, .arg {
	font-weight: bold;
}

::selection {
	color: var(--background);
	background: var(--foreground);
}

footer {
	background-color: var(--foreground);
	color: var(--background);
	text-align: left;
	padding: 1px;
	position: sticky;
	bottom: 0;
	width: 100%;
	z-index: 1;
	max-width: 45em;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
footer span {
	/* float: right; */
	display: inline-block;
}

/* why the hell are people using these stupid phones as webbrowsers??? */
@media(width <= 600px) {
	body {
		font-size: 1em;
	}
	#hint {
		display: none;
	}
}

