@keyframes gradientBG {
	0% {
		background-position: 0% 0%;
	}
	25% {
		background-position: 0% 100%;
	}
	75% {
		background-position: 0% 0%;
	}
}

body, html {
	margin: 0;
	padding: 0;
	height: 100vh;
	font-family:Georgia, 'Times New Roman', Times, serif;
	font-size: 40px;
	background: linear-gradient(0deg, #66B5E7, #1D3394); /* Adjusted to create a linear gradient */
	background-size: 100% 150%; /* Make the background size big enough to enable the animation */
	animation: gradientBG 15s infinite linear; /* Apply the animation */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* The rest of your CSS remains unchanged */

.container {
	position: relative;
	height: 68vh;
	width: 90vw;
	border-radius: 20px; /* Maintain border-radius */
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card {
	position: relative;
	width: 100%;
	height: 100%; /* Use 100% to fill the container */
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.5s ease-in-out forwards, slideUp 1.5s ease-out forwards;
}

.content {
	padding: 20px;
	color: #e7c966;
	z-index: 1;
	text-align: center;
}
p {
	color: white;
}
strong {
	color: #e7c966;
}

#bg-video {
	position:absolute;
	width: 90vw;
	height: 68vh;
	z-index: -5;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px; /* Apply border-radius */
	z-index: 0;
}

@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes slideUp {
	from {transform: translateY(20px);}
	to {transform: translateY(0);}
}

h1, p {
	margin: 10px 0;
}

@media (max-width: 1000px) {
	.content {
		padding: 20px;
	}
	body, html {
		font-size: 20px;
	}
}