main {
	margin: 0;
/*	background-color: var(--surface-150);*/
}

.onboarding-container {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 1rem;
	text-align: center;
	animation: fadeIn 1.2s ease;
}

.onboarding-container .hero-img {
	width: 15rem;
	height: 15rem;
}

.onboarding-container .hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.onboarding-container h1 {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--text-900);
}

.onboarding-container p {
	font-size: 0.9rem;
	color: var(--text-900);
	max-width: 20rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20rem);
	}

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

footer {
	padding: 1rem 0.5rem;
}