html, body {
	margin: 0;
	padding: 0;
	height: 100vh;
	background: #202123;
	color: #ECEEF1;
	font-family: system-ui, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

h1 {
	background: #1A73E8;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.portrait {
	width: 600px;
	max-width: 80vw;
	height: auto;
	border-radius: 24px;
	border: 6px solid #1A73E8;
	object-fit: cover;
}

.intro p {
	font-size: 1rem;
	text-align: center;
	max-width: 50ch;
}

.links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.icon {
	width: 32px;
	height: 32px;
	filter: invert(100%);
}

.logo {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 80px;
	height: auto;
}

footer {
	text-align: center;
	padding: 2rem;
	margin-top: auto;
}

footer a:visited {
    color: #1A73E8;
}

