@import url("https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* LOCK SCROLL AT ROOT */
html,
body {
	height: 100vh;
	/* overflow: hidden;
	touch-action: none; */
}

::-webkit-scrollbar {
	/* display: none; */
}

body {
	font-size: 62.5%;
	font-family: "SN Pro", sans-serif;
	background-image: radial-gradient(
		circle farthest-corner at 49.2% 51.2%,
		rgba(254, 230, 254, 1) 0%,
		rgba(205, 249, 252, 1) 51.7%,
		rgba(254, 232, 254, 1) 91.1%
	);
	/* background-repeat: no-repeat; */
}

/* FULL SCREEN LAYOUT */
main {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.title-container h1 {
	font-size: 2.4rem;
	color: #333;
	margin-bottom: 24px;
	text-align: center;
	text-transform: uppercase;
}

.title-container img {
	width: 50%;
	display: block;
	margin: 0 auto;
}

.cta-container {
	display: flex;
	gap: 20px;
}

button {
	padding: 12px 24px;
	font-size: 1.2rem;
	border: none;
	background-color: #f9a8d0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main .text {
	margin-top: 20px;
	font-size: 1.2rem;
	color: #000;
}

main .title {
	font-size: 2rem;
	color: #333;
	margin-bottom: 30px;
}

main .message {
	width: 80%;
	max-width: 600px;
	text-align: justify;
	border: 2px solid #000;
	border-radius: 12px;
	padding: 40px;
}
