*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main {
	padding: 50px 0;
	flex: 1;
}

.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	padding: 10px;
	background: #262728;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main h1 {
	text-align: center;
	font-size: 22px;
	line-height: 36px;
	font-weight: 700;
	text-align: center;
	padding: 14px 0;
	width: 100%;
	background: #fdab0e;
	border-radius: 100px;
	margin: 0 0 18px 0;
}
.main p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin: 0 0 16px 0;
}
.main h2 {
	font-size: 20px;
	line-height: 30px;
	text-align: left;
	font-weight: 700;
	margin: 0 0 18px 0;
}
.main h3 {
	font-size: 18px;
	line-height: 30px;
	text-align: left;
	font-weight: 700;
	margin: 0 0 18px 0;
}
.main strong {
	font-size: 20px;
	line-height: 30px;
	text-align: left;
	font-weight: 700;
	margin: 0 0 18px 0;
}
.main ul {
	margin: 15px 0;
}
.main ul li a {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin: 0 0 10px 0;
	color: #000;
	text-decoration: none;
}
.main ul li a:hover {
	color: #fdab0e;
}

.main .table {
	margin: 30px 0;
	width: 100%;
}
.main .table table {
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}
.main .table table td {
	padding: 10px;
	width: 50%;
	border: 1px solid black;
}

h1 a {
	text-decoration: none;
	display: flex;
	justify-content: center;
}