html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
body, code, pre {
	font-family: 'Share Tech Mono', monospace;
}
body {
	color: rgb(187, 187, 187);
	margin: 0;
	box-sizing: border-box;
	background-color: #181a1d;
}

body::before {
	background-image: url(./bg.jpg);
	background-position: center;
	background-size: cover;
	opacity: .02;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	content: "";
	filter: blur(12px);
}
