* {
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: system-ui, sans-serif;
}

.container {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 1rem;
	padding: 1rem;
}

.site-header,
.site-main,
.site-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px dotted #888;
	padding: 1rem;
}

section.hero div h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


/* Typography for hero section */
.hero h1 {
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 1em 0;
	position: relative;
	z-index: 1;
}

.hero h1::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	z-index: -1;
}

.hero h2 {
	font-size: clamp(1.25rem, 3vw, 2rem);
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	margin: 1em 0 3em 0;
}

h2 em {
	font-weight: 700;
}