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

:root {
	--bg-dark: #03071c;
	--bg-card: #070916;
	--accent-js: #f7df1e;
	--accent-wasm: #654ff0;
	--text-primary: #cccccc;
	--text-secondary: #999999;
	--text-highlight: #b9bed3;
	--border-color: #333344;
}

body {
	font-family: "Courier New", monospace;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}
