*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

.hero{
	width: 100%;
	min-height: 100vh;
	background-image: linear-gradient(130deg, rgba(0,0,0,0.85), rgba(0,128,0,0.85)), url(../img/background.png);
	background-position: center;
	background-size: cover;
	padding: 10px 8%;
	text-align: center;
	color: #ffffff;
}

nav{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo{
	height: 48px;
	cursor: pointer;
}

.btn{
	background: linear-gradient(#28a745, #1e7e34);
	color: #ffffff;
	font-size: 16px;
	padding: 16px 30px;
	border-radius: 30px;
	border: 0;
	outline: 0;
	cursor: pointer;
}

.content{
	margin: 6% auto 0;
}

.content h1{
	font-size: 55px;
	font-weight: 400;
}

.content h1 span{
	font-weight: 700;
}

form{
	width: 90%;
	max-width: 600px;
	height: 65px;
	background: #ffffff;
	margin: auto;
	display: flex;
	align-items: center;
	border-radius: 40px;
	margin-bottom: 20px;
}

form input{
	flex: 1;
	padding: 20px 30px;
	font-size: 16px;
	border: 0;
	outline: 0;
	background: transparent;
}

form .btn{
	padding: 0;
	width: 150px;
	height: 65px;
	border-radius: 31px;
	
}

.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
	font-size: 24px;
}

.countdown-timer div {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 15px 20px;
	border-radius: 10px;
	min-width: 80px;
}

.countdown-timer span {
	display: block;
	font-size: 32px;
	font-weight: 600;
	color: #90ee90; /* Light green */
}

.countdown-timer small {
	font-size: 14px;
	color: #ffffff;
}