*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
}

body {
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: 18px;
	line-height: 160%;
	color: #206020;
	background: linear-gradient(165deg, #f0fff0 0%, #ffffe0 35%, #bdebbd 100%);
}

.page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 32px 24px 48px;
	text-align: center;
}

.logo {
	display: block;
	width: 280px;
	height: auto;
	margin-bottom: 24px;
	filter: drop-shadow(0 4px 12px rgba(0, 64, 0, 0.2));
	transition: transform 250ms ease, filter 250ms ease;
}

.logo:hover,
.logo:focus-visible {
	transform: scale(1.1);
	filter: drop-shadow(0 6px 16px rgba(0, 64, 0, 0.28));
}

.logo:focus-visible {
	outline: 2px solid #60c060;
	outline-offset: 4px;
}

h1 {
	margin: 0 0 8px;
	font-size: 36px;
	font-weight: 700;
	color: #006000;
}

.tagline {
	margin: 0 0 32px;
	max-width: 640px;
	font-size: 17px;
	color: #3aa23a;
}

.footer {
	margin-top: 48px;
	font-size: 14px;
	color: #208620;
}

.footer a {
	color: #006000;
	font-weight: 600;
	text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
	text-decoration: underline;
}

.footer a:focus-visible {
	outline: 2px solid #60c060;
	outline-offset: 2px;
}
