*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
	font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
}

.wrapper {
	min-height: 100vh;
	background-image: url(./bg.webp);
	background-size: cover;
	background-position: center;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;

	.promo-text {
		background-color: rgba(0, 0, 0, 0.4);
		color: #fff;
		margin: 0;
		text-align: center;
		padding: 12px;
		border-radius: 24px;
		backdrop-filter: blur(48px);
		width: min(100%, 900px);
		font-size: 24px;
	}

	.btn {
		padding: 12px 24px;
		background-color: #FFCE00;
		border-radius: 24px;
		color: #000;
		text-decoration: none;
		margin: 16px 0;
		font-size: 18px;
		transition: background-color .3s, transform .3s;

		&:hover {
			background-color: #ffcf11;
			transform: scale(1.1);
		}
	}

	.license {
		color: #fff;
		text-align: center;
		margin: 0;
		text-shadow: 0px 0px 6px rgba(66, 68, 90, 1);
	}
}

.disclaimer {
	text-align: center;
	padding: 8px 16px;
	font-weight: 100;
}

@media screen and (min-width: 768px) {
	.wrapper {
		.promo-text {
			font-size: 40px;
		}

		.btn {
			font-size: 30px;
			padding: 16px 32px;
		}
	}
}