
body {
	text-align: center;
	font-family: 'Aptos', Arial, sans-serif;
	background: #f6f6f6;
	color: #222;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	color: #fff;
	padding: 36px 36px 18px 36px;
	font-size: 2.5rem;
	background: linear-gradient(90deg, #232526 0%, #414345 100%);
	border-radius: 18px;
	margin-bottom: 32px;
	font-weight: 800;
	box-shadow: 0 6px 32px rgba(0,0,0,0.18);
	letter-spacing: 1.5px;
	max-width: 700px;
	width: 100%;
	border: 2px solid #fff2;
	text-shadow: 0 2px 8px #000a;
}
button {
	background: linear-gradient(90deg, #222 60%, #444 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 14px 10px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
	letter-spacing: 0.5px;
	min-width: 160px;
	display: inline-block;
}
button:hover, button:focus {
	background: linear-gradient(90deg, #fff 60%, #eee 100%);
	color: #222;
	box-shadow: 0 4px 24px rgba(0,0,0,0.15);
	transform: translateY(-2px) scale(1.04);
	border: 1.5px solid #222;
}
@media (max-width: 600px) {
	button {
		font-size: 1rem;
		padding: 10px 12px;
		min-width: 120px;
	}
	h1 {
		font-size: 1.3rem;
		padding: 12px;
		max-width: 98vw;
	}
}
