/* Layout and theme */
html, body {
	height: 100%;
}
body {
	font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	background: linear-gradient(180deg, #f5f7fb 0%, #eef3fb 100%);
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

.container {
	width: min(680px, 94%);
	text-align: center;
	padding: 36px 28px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 8px 30px  rgb(1, 7, 20);
	transform-origin: center;
}

img {
	max-width: 360px;
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto 18px;
}

h1 {
	font-size: 2rem;
	margin: 6px 0 8px;
	line-height: 1.15;
}

.message {
	margin: 0 0 14px;
	color: #55606a;
	font-size: 1rem;
}

.emoji {
	font-size: 1.2rem;
	vertical-align: middle;
	display: inline-block;
	margin-left: 8px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.home {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #92e3a9;
	color: #13e5e5;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(5,117,230,0.18);
}

.home:hover {
	transform: translateY(-3px);
}

/* Accessible: reduce motion */
@media (prefers-reduced-motion: reduce) {
	.emoji { transition: none; }
}

/* Responsive tweaks */
@media (max-width: 420px) {
	h1 { font-size: 1.4rem; }
	.container { padding: 22px; }
	img { width: 84%; }
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: #f8f9fb;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}

.container {
	text-align: center;
	padding: 20px;
}

img {
	max-width: 320px;
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto 20px;
}

h1 {
	font-size: 2rem;
	margin: 0 0 10px;
}

.message {
	margin: 0 0 12px;
	color: #666;
}

.emoji {
	font-size: 1.2rem;
	vertical-align: middle;
	display: inline-block;
	margin-left: 6px;
}

.home {
	color: #050606;
	text-decoration: none;
	font-weight: 600;
}

.home .emoji { font-size: 1rem; margin-left: 8px; }

