@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap");

* {
	font-family: "Red Hat Display", sans-serif;
}
body {
	width: 100dvw;
	height: 100dvh;
	margin: 0;
	padding: 0;
	background-color: #f4f4f9;
	font-family: "Red Hat Display", sans-serif;
	overflow-x: hidden;
}

#app {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 1rem;
	padding-top: 8rem;
}

.teaser-container {
	max-width: 600px;
	border-radius: 8px;
}

h1 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 10px;
}

p {
	font-size: 1rem;
	color: #555;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	padding: 10px 30px;
	font-size: 1rem;
	border-radius: 20px;
	color: white;
	background-color: #007bff;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #0056b3;
}

.benefits-container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	padding: 0 20px;
}

.card {
	width: 300px;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.card h2 {
	font-size: 1.5rem;
	color: #333;
	margin: 0;
}

.card p {
	font-size: 1rem;
	color: #555;
	margin: 0;
}
