
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
	
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body, html {
		height: 100%;
		overflow: hidden;
	}

	.video-background {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: -1;
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6); /* semi-transparent dark overlay */
		z-index: 0;
	}

	.content {
		position: relative;
		z-index: 1;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		color: white;
		padding: 20px;
	}

	.logo {
		max-width: 200px;
		
	}

	h1 {
		font-size: 3rem;
		font-family: "Montserrat", sans-serif;
		font-optical-sizing: auto;
		font-weight: 300;
		font-style: normal;
	}

	p {
		font-family: "Roboto", sans-serif;
		font-size: 1.2rem;
		margin-bottom: 20px;
		letter-spacing: 3px;
	}

	a.email-link {
		color: #ffffff;
		text-decoration: underline;
		font-weight: bold;
		overflow-wrap: break-word;
	}

	.divider {
		margin-top: 20px;
		padding: 10px;
	}

	@media (max-width: 768px) {
		h1 {
		font-size: 2rem;
		}

		p {
		font-size: 1rem;
		}

		.logo {
		max-width: 150px;
		}
	}