body {
	padding: 0;
	margin: 0;
	background-color: var(--bg-color);
	text-align: center;
	overflow: hidden;
	padding-top: 121px;
	transition: background-color 0.3s ease;
}

h1 {
	color: var(--text-color);
	font-family: Poppins;
	position: absolute;
	font-size: 3em;
	margin: 0;
	padding: 0;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: color 0.3s ease;
}

h2 {
	color: var(--text-color);
	font-family: Poppins;
	position: absolute;
	font-size: 1.2em;
	margin: 0;
	padding: 0;
	text-align: center;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
	margin-top: 50px;
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
	animation-delay: 0.6s;
	transition: color 0.3s ease;
}

h2:first-of-type {
	top: calc(28% + 121px);
}
h2:last-child {
	top: calc(34% + 121px);
	animation-delay: 1.1s;
}

.content-wrapper img {
	height: 2.3em;
	float: left;
	padding: 12px;
}

.content-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: calc(100vh - 121px);
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
}

/* Common text fade-in animation */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Common styles for main content */
.content-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* Common text styles */
.main-title {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
	animation-delay: 0.3s;
	position: absolute;
	color: var(--text-color);
	transition: color 0.3s ease;
}

.start-now-link {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(40% + 121px);
	text-align: center;
	color: var(--text-color);
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
	animation-delay: 1s;
	margin-top: 0;
	font-family: Poppins;
	font-size: 1.1em;
	text-decoration: none;
	transition: color 0.3s ease;
	z-index: 1;
}

