body {
	font-family: system-ui, sans-serif;
	background: transparent;
	padding: 2rem;
	text-align: center;
	display: flex;
	min-height: 100vh;
	justify-content: center;
	align-items: center;
}

#messages {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.message {
	background: #57ff5e;
	color: #000000;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: bold;
	font-size: 1.5rem;
	animation: fadeIn 0.3s ease-out;
	transition: opacity 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
