body {
	margin: 0;
	font-family: Arial, sans-serif;
	text-align: center;
	background: white;
	display: flex;
	justify-content: center;
	
	min-height: 100vh;
}

.container {
	animation: zoomOut 0.8s ease-out forwards;
	opacity: 0;
}

@keyframes zoomOut {
	from {
		transform: scale(1.1); /* start slightly bigger */
		opacity: 0;
	}
	to {
		transform: scale(1); /* normal size */
		opacity: 1;
	}
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

button {
	padding: 10px 20px;
	border: none;
	background: #050555;
	width: 200px;
	height:50px;
	color: white;
	cursor: pointer;
	font-size: 20px;
	border-radius: 25px;
	transition: background 0.3s;
}

.demobtn {
	margin-top: 15px;
	width: 80%;
	max-width: 350px;
}
