body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}

.container {
	text-align: center;
}
#message {
	display: none;
}
.button {
	background-color: #4caf50;
	border: none;
	color: white;
	padding: 20px 40px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	font-size: 18px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.button:hover {
	background-color: #45a049;
}

@media (max-width: 768px) {
	.button {
		padding: 15px 30px;
		font-size: 16px;
	}
}