body {
	font-family: Arial, sans-serif;
	background: #f0f0f0;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: auto;
	flex-direction: column;
	overflow-y: scroll;
	padding: 20px;
}

.card {
	background: white;
	padding: 2em;
	text-align: left;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 800px;
	box-sizing: border-box;
	margin: 0 auto;
}

.avatar {
	border-radius: 50%;
	width: 160px;
	height: 160px;
	object-fit: cover;
	margin-bottom: 1em;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

h1 {
	font-size: 2em;
	color: #333;
	margin-bottom: 0.5em;
	text-align: center;
}

.title {
	color: #888;
	font-size: 1.2em;
	margin-bottom: 1.5em;
	text-align: center;
}

.bio {
	font-size: 0.95em;
	color: #333;
	line-height: 1.4;
	margin-bottom: 1em;
}

h3 {
	margin-top: 1.5em;
	font-size: 1.2em;
	color: #333;
}

.experience {
	text-align: left;
	margin-top: 0.5em;
	padding-left: 20px;
}

.experience li {
	margin-bottom: 1em;
}

.experience ul {
	margin-top: 0.5em;
	padding-left: 20px;
}

.social {
	padding-top: 20px;
}

.social a {
	text-decoration: none;
	color: #0366d6;
	margin: 0 5px;
	margin-top: 20px;
	padding-top: 20px;
}

@media (max-width: 480px) {
	.card {
		padding: 1.5em;
		width: 90%;
		max-width: 90%;
		height: auto;
		margin: 0 10px;
	}

	.avatar {
		width: 160px;
		height: 160px;
	}

	.bio {
		font-size: 0.9em;
	}

	h3 {
		font-size: 1.1em;
	}

	.title {
		font-size: 1.2em;
	}

	.social a {
		font-size: 0.9em;
	}
}
