* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
@font-face {
    font-family: "Renogare";
    src: url("/fonts/Renogare-Regular.ttf") format("ttf"), url("/fonts/Renogare-Regular.ttf") format("woff"), url("/fonts/Renogare-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
.text {
    font-family: "Renogare", sans-serif;
}
body {
	background-size: cover;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	background-image: url("/assets/images/earthly.webp");
	background-attachment: fixed;
	text-align: center;
	padding-top:2%;
		font-family: "Renogare", sans-serif;
}
.form-container {
	justify-content: center;
	/* Centers content inside */
	align-items: center;
	/* Centers form container horizontally */
	background: rgba(0, 0, 0, 0.5);
	padding: 20px;
	border-radius: 10px;
	color: white;
	width: 100%;
	text-align: center;
	margin: auto;
	/* Ensures centering */
}
.container {
	display: flex;
	width: 100%;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	font-family: "Renogare";
	margin: auto;
}
.logo {
	margin: auto;
	max-width: 300px;
}
.text {
	color: white;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.sponsorship-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: auto;
	font-family: "Renogare";
}
.sponsorship-tier {
	width: 325px;
	height:auto;
	text-align: center;
	color: white;
	font-family: "Renogare";
	margin: 5px;
}
.container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Ensures content is centered if less than viewport height */
}
.tier-header {
	background-image:url('/assets/images/tierbg.webp');
	background-size: cover;
	padding: 20px;
	font-size: 1.3rem;
	font-weight: bold;
	color: white;
	font-family: "Renogare";
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
	border-radius:10px 10px 0px 0px;
}
.tier-benefits {
	padding: 20px 45px 20px 45px;
	font-size: 1.2rem;
	text-align: left;
	line-height: 1.5;
	color: white;
	font-family: "Renogare";
	background: rgb(150, 150, 150, 0.8);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7);
	border-radius: 0px 0px 10px 10px;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
	.text {
		font-size: 2rem;
		width: 80%;
		line-height: 1.6;
		font-family: "Renogare";
	}
	.sponsorship-container {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
}
/* Footer styles */
footer {
	margin-top: auto;
	/* Pushes the footer to the bottom */
	width: 100%;
	text-align: center;
	color: white;
	font-size: 1rem;
	background-size: cover;
	padding: 10px 0;
	font-family: "Renogare", sans-serif;
	}
footer p, a {
   font-family: "Renogare", sans-serif;
}
.applogo img {
	margin: auto;
	max-width: 300px;
}
