body {
	font-family: Arial, sans-serif;
	margin: 0;
	line-height: 1.6;
	background: #fdfdfd;
	color: #333;
}

header {
	background: #333;
	color: white;
	padding: 1rem;
	text-align: center;
}

header h1 {
	margin: 0.2rem 0;
}

nav {
	margin-top: 0.5rem;
}

nav a {
	color: white;
	margin: 0 0.5rem;
	text-decoration: none;
}

nav a:hover {
	text-decoration: underline;
}

main {
	max-width: 800px;
	margin: auto;
	padding: 1rem;
}

.bio {
	text-align: center;
}

.bio img {
	max-width: 250px;
	border-radius: 50%;
}

.projects ul {
	list-style: none;
	padding: 0;
}

.projects li {
	margin: 0.5rem 0;
}

footer {
	text-align: center;
	padding: 1rem;
	background: #eee;
	margin-top: 2rem;
}
.title-bar {
	display: flex;
	flex-wrap: wrap; /* allows wrapping on small screens */
	justify-content: center; /* centers text horizontally */
	align-items: baseline;
	gap: 1.5rem; /* little space between name and tagline */
}

.title-bar h1 {
	margin: 0;
	font-size: 1.8rem;
}

.title-bar .tagline {
	font-size: 1rem;
	font-style: italic;
	color: #ccc;
}

.small {
	font-size:.8rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
	nav a {
		display: block;
		margin: 0.3rem 0;
	}
}
