* {
	margin: 0;
	padding: 0;
	line-height: 1.5;
}
html {
	scroll-behavior: smooth;
}
h2,
h1 {
	font-family: "Bebas Neue", sans-serif !important;
	font-weight: 400;
	font-style: normal;
}
.hero-bg {
	background-image: url("images/heroBg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.pre-animation {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation when elements come into view */
.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* Optional: Animation when elements go out of view */
.animate-out {
	opacity: 0;
	transform: translateY(-30px);
	transition: opacity 0.6s ease-in, transform 0.6s ease-in;
}

.download {
	color: #e20e1a;
	text-decoration: underline;
}
