
body {
	text-align: center;
	font-family: 'Aptos', sans-serif; 
	background: hsl(0, 0%, 96%);
	color: #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color:#60a54b
}
h1 {
	color: #fff;
	padding: 36px 36px 18px 36px;
	font-size: 2.5rem;
	background: linear-gradient(90deg, #000000 0%, #329613 100%);
	border-radius: 5px;
	margin-bottom: 32px;
	font-weight: 800;
	box-shadow: 0 6px 32px rgba(0,0,0,0.18);
	letter-spacing: 1.5px;
	max-width: 2000px;
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0.133);
	text-shadow: 0 2px 8px #000a;
}
button {
	background: linear-gradient(90deg, #000000 1% ,#57ec29 100% );
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 25px 30px;
	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: 3200px;
		max-height: 40px;
	}
}
p{max-width: 600px; text-align:center; font-size: 1.2rem;}

