* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Work Sans', sans-serif;
	background-image: url('butterflies-background.png');
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

	.overlay {
		background-color: rgba(0, 0, 0, 0.7);
		padding: 20px 50px;
		border-radius: 10px;
		text-align: center;
		width: 600px;
		max-width: 90%;
		margin-top: 5px;
	}

	.main-title {
		font-size: 52px;
		font-weight: 700;
		margin-bottom: 5px;
		color: #FF8C00;
		text-transform: uppercase;
		letter-spacing: 2px;
		line-height: 1.2;
	}

.location {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 60px;
	color: #FF8C00;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.sub-title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 50px;
	color: #FF8C00;
	text-transform: uppercase;
}

.tagline {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #FF8C00;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.email-form {
	margin-bottom: 40px;
}

.email-form label {
	font-size: 18px;
	display: block;
	margin-bottom: 15px;
	color: white;
}

.email-form input,
.access-section input {
	padding: 15px;
	width: 80%;
	border: none;
	border-radius: 5px;
	margin-bottom: 25px;
	font-size: 18px;
	color: #F5F5F0;
	text-align: center;
	background-color: rgba(245, 245, 240, 0.2);
	margin-left: auto;
	margin-right: auto;
}

.email-form button,
.access-section button,
#mc-embedded-subscribe {
	padding: 15px;
	width: 80%;
	border: none;
	background-color: #FF8C00;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-left: auto;
	margin-right: auto;
}

.email-form button:hover,
.access-section button:hover,
#mc-embedded-subscribe:hover {
	background-color: #FF7000;
}

.access-section p {
	font-size: 20px;
	margin-top: 40px;
	color: #FF8C00;
	font-weight: 400;
}

.access-section input {
	padding: 15px;
	width: 80%;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	margin-top: 15px;
	color: #333;
	margin-left: auto;
	margin-right: auto;
}

.membership-note {
	margin-bottom: 20px;
	color: #F5F5F0;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.copyright-footer {
	text-align: center;
	margin-top: 40px;
	color: #FF8C00;
	font-size: 14px;
	font-style: italic;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
	body {
		align-items: flex-start;
		padding-top: 40px;
	}

	.overlay {
		padding: 8px 25px;
		width: 85%;
		margin-top: 30px;
	}

	.main-title {
		font-size: 26px;
		letter-spacing: 1px;
		margin-bottom: 5px;
	}

	.location {
		font-size: 20px;
		margin-bottom: 35px;
	}

	.sub-title {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.tagline {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.email-form input,
	.access-section input {
		padding: 10px;
		font-size: 14px;
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.email-form button,
	.access-section button,
	#mc-embedded-subscribe {
		padding: 10px;
		font-size: 14px;
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.access-section p {
		font-size: 16px;
		margin-top: 25px;
	}

	.membership-note {
		font-size: 12px;
	}

	.copyright-footer {
		font-size: 11px;
		margin-top: 25px;
	}
}
