@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
	font-family: 'Inter', sans-serif;
	background-color: #f3f4f6;
}

.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;
}

.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);
	}
}

.policy h1 {
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 20px;
}

.policy h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.policy p {
	font-size: 18px;
	margin-bottom: 14px;
}
