section, main {
	padding: 30px 20px;
	text-align: center;
}

.hero {
	padding-top: 60px;
}

.hero > h2 {
	color: var(--clr-neutral-400);
	font-weight: 500;
}

.desc {
	font-size: 1.25rem;
}

.hero .titleXL {
	margin: 0;
}

.options {
	display: flex;
	justify-content: center;
	text-align: left;
	gap: 3rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.options .option {
	border: 1px solid var(--clr-neutral-800);
	padding: 10px 30px;
	border-radius: 7px;
	max-width: 400px;
	transition: 200ms;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	flex: 1 1 400px;
}

.option:nth-child(3) {
	flex-basis: 100%;
}

.options .option:hover {
	border-color: var(--clr-neutral-600);
}

.contact .titleXL {
	font-size: 1.75rem;
	margin-bottom: 15px;
}

.email {
	text-decoration: none;
	font-size: 1.25rem;
	color: var(--primary);
}

.email:hover {
	color: var(--primaryHover);
}

.outline {
	-webkit-text-stroke: 2px var(--secondary);
	-webkit-text-fill-color: transparent;
	text-wrap: nowrap;
}