:root {
	font-size: 24px;
}

:focus-visible {
	outline: 1px solid yellow;
	outline-offset: 3px;
	border-radius: 0;
}

* {
	box-sizing: border-box;
	word-break: break-all;
}

html {
	height: 100vh;
	position: relative;
}

html,
body {
	cursor: url(/cursor/001b_ravprobe.png) 12 16, auto;
	margin: 0;
	position: relative;
	min-height: 100%;
	background-color: black;
	color: yellow;
}

::selection {
	background-color: yellow;
	mix-blend-mode: difference;
	color: black;
}

a {
	color: yellow;
	cursor: url(/cursor/001b_ravprobe_hover.png) 12 16, pointer;
	text-decoration: underline;
}

.probedata {
	cursor: url(/cursor/001b_ravprobe_hover.png) 12 16, pointer;
}

main {
	display: flex;
	flex-direction: column;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 12.5% min(1rem, 50%);
	justify-content: center;
	align-items: center;
	image-rendering: pixelated;
	background-position-x: center;
}

ul {
	margin: auto;
	padding: 1px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1px;
	background-color: yellow;
	min-width: 0;
	width: 960px;
	max-width: 100%;
	/* box-shadow: 0px 0px 10px black; */
}

li {
	background: black;
	padding: 10px 10px 10px 10px;
	list-style: none;

	font-size: 1rem;

	animation: time 1s linear infinite;

	text-shadow:
		0 .1em .1em #f00,
		0 0 .2em #0f0,
		0 -.1em .3em #00f;
}

pre {
	display: inline;
	font-family: unset;
}