html,
body {
	margin: 0;
	padding: 0;
	font-family: "Georgia", serif;
	background: linear-gradient(#faead4, #ffcf8c);
}

canvas {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.topbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
}

.topbar nav {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 15px;
}

.topbar a {
	text-decoration: none;
	color: #4b2e2e;
	font-weight: bold;
}

main {
	position: relative;
	z-index: 1;
}

.section {
	min-height: 100vh;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section.center {
	text-align: center;
}

.avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

h1 {
	font-size: 2.5rem;
	margin: 0;
}

.description {
	max-width: 400px;
	margin: 15px 0 25px;
	line-height: 1.6;
}

.socials {
	display: flex;
	gap: 20px;
}

.socials a {
	font-size: 1.5rem;
	text-decoration: none;
	transition: transform 0.2s;
}

.socials a:hover {
	transform: scale(1.2);
}
