.module {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3.125rem 1.25rem;
	min-height: 70vh;
}

.module-content {
	max-width: 37.5rem;
	text-align: center;
}

.module-content h1 {
	font-size: 2.5rem;
	background: white;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.module-content p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #ccc;
}

.module-content .buttons .btn {
	display: inline-block;
	margin: 0.625rem;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: bold;
	background: linear-gradient(135deg, #2c2c39, #18181e);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease;
}

.module-content .buttons .btn:hover {
	transform: scale(1.05);
	box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/*********CHALLENGE********/
#btn-challenge {
	padding: 3rem;
	font-size: 2rem;
	font-weight: bolder;
}