main {
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

main h2 {
	font-size: 2rem;
	text-align: center;
	color: var(--bg2);
}

hr {
	margin-inline: auto;
}

main p {
	font-size: 1.25rem;
	line-height: 1.5;
	text-align: center;
	position: relative;
	padding-bottom: 2rem;
}

main p::after {
	content: '';
	position: absolute;
	display: block;
	background-color: var(--secondary);
	width: 20%;
	height: 2px;
	bottom: 0;
	right: 0;
	left: 0;
	margin-inline: auto;
}

main p::before {
	content: '';
	position: absolute;
	display: block;
	background-color: var(--secondary);
	width: 10%;
	height: 2px;
	bottom: 0.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
}

main a:hover {
	color: #0056b3;
}
