body {
	font-family: 'Outfit', sans-serif;
	margin: 0;
	padding: 0;
	border-top: #215FFF solid 10px;
	border-bottom: #999 solid 10px;
}
.document {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	gap: 20px;
}
@media (max-width: 600px) {
	.document {
		padding: 20px;
		gap: 0;
	}
}
a {
	color: #215FFF;
	font-weight: 600;
}
@media print {
	.document {
		border-top: none;
		border-bottom: none;
	}
}
.text {
	max-width: 800px;
	width: 100%;
	text-align: justify;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
}
h1 {
	font-size: 24px;
	text-align: center;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 17px;
}
h4 {
	font-size: 16px;
}
h5 {
	font-size: 15px;
}
p {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
}
li {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
tr, td {
	border: 1px solid #ddd;
	padding: 8px;
}