:root {
	--bg: #000000;
	--fg: #ff7a00;
	--fg-dim: #b35a0c;
	--accent: #ffae42;
}

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

html,
body {
	height: 100%;
	background: var(--bg);
	color: var(--fg);
	font-family: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

a {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s ease, color 0.15s ease;
}

a:hover,
a:focus-visible {
	border-bottom-color: var(--accent);
}

.terminal {
	width: 100%;
	max-width: 640px;
}

.name {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tagline {
	color: var(--fg);
	margin-top: 0.25rem;
}

.links {
	margin: 0.5rem 0 1.5rem 0;
}

.links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.links li::before {
	content: "-> ";
	color: var(--fg-dim);
	margin-right: 0.25rem;
}

.cursor {
	color: var(--fg);
	animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cursor {
		animation: none;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 16px;
	}
	.name {
		font-size: 1.4rem;
	}
}
