body {
	position: relative !important;
	font-family: Arial, sans-serif;
}

.content {
	font-family: Arial, sans-serif;
	font-size: 18px;
}

.content h1 {
	font-family: Arial, sans-serif;
	font-weight: normal;
	font-size: 46px;
}

.content p {
	margin-bottom: 18px;
	line-height: 1.5;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.442);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay a {
	color: black !important;
	text-decoration: none !important;
	text-align: center !important;
}

.message {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	border-radius: 30px;
}

.bg-white {
	background-color: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.message-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.message-link h3 {
	font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
	font-size: 34px !important;
	font-weight: bold;
	margin: 0 0 30px 0;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.message-link img {
	width: 300px;
}

.message-loader {
	width: 148px;
	height: 148px;
	background-image: url('../img/loading.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	animation: spin 2s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hidden {
	opacity: 0;
	visibility: hidden;
}

.invisible {
	opacity: 0;
	visibility: hidden;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

.visible {
	opacity: 1;
	visibility: visible;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

@media (min-width: 1024px) {
	.cta-button {
		font-size: 20px;
		padding: 20px 32px;
	}
}
.cta-button {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 24px auto;
	background-color: #ef4444;
	color: white;
	font-size: 22px;
	font-weight: bold;
	padding: 24px 24px;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
	transition: all 0.3s ease;
	border: 2px solid #ef4444;
	text-align: center;
}

.highlight {
	color: #ef4444;
	font-weight: bold;
	background-color: #fef2f2;
	padding: 4px 8px;
	border-radius: 6px;
	display: inline-block;
	margin-top: 4px;
}

.red {
	color: #ef4444;
	font-weight: bold;
}

@media (max-width: 560px) {
	.content h1 {
		font-size: 22px;
	}
}
