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

	background-image: var(--bg-image);
	background-repeat: no-repeat;
	background-position: center right;
}

hr {
	margin-inline: auto;
}

main h2,
main h3 {
	text-align: center;
}

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

main p {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.5;
	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;
}

table,
tr,
td {
	border: none !important;
}

table {
	max-width: 900px;
	margin-inline: auto;
}

td {
	text-wrap: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
