/* test.dev.jfedjaev.de — reachability check, minimal line of the dev lab */

:root {
	--bg: #030409;
	--text: #f8fff4;
	--muted: #7f8893;
	--green: #00ff91;
	--font-mono: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
	--font-display: Impact, "Arial Black", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
}

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

body {
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-mono);
	-webkit-font-smoothing: antialiased;
	padding: 24px;
}

.test-title {
	font-family: var(--font-display);
	font-size: clamp(40px, 8vw, 80px);
	font-weight: 900;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.test-status {
	margin-top: 18px;
	font-size: 10px;
	letter-spacing: .32em;
	color: var(--green);
}

.test-status .dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 8px var(--green);
	margin-right: 12px;
	animation: pulse 2s ease-in-out infinite;
	vertical-align: 2px;
}

@keyframes pulse { 50% { opacity: .3; } }

.test-note {
	margin-top: 20px;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.7;
}
