* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
	height: 100%;
}

.bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 20px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px 40px;
	text-align: center;
	color: #fff;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.52);
	padding-top: 200px;
}

.contact-card img {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 300px; height: 300px;
}
@media only screen and (min-width: 1200px) {
	.contact-card img {
		top: 0;
		width: 300px; height: 300px;
	}
	
	.contact-card {
		padding-top: 180px;
	}
}

.contact-card h1 {
	margin-bottom: 25px;
	font-size: 28px;
}

.contact-card p {
	margin: 15px 0;
	font-size: 18px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.contact-card p svg {
	fill: #ffffff;
	margin-right: 6px;
}

.contact-card a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

.contact-card a:hover {
	text-decoration: none;
	
}

.links {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.links a {
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	transition: background 0.3s ease;
}

.links a:hover {
	background: rgba(255, 255, 255, 0.35);
}
