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

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
	background: #121212;
	color: #ada79b;
}

.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: 15px;
	background: #1e1d1d;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__logo {
	width: 160px;
	height: 45px;
}
.header__logo img {
	max-width: 100%;
	max-height: 100%;
}
.header__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.header__buttons-login {
	font-size: 18px;
	line-height: 27px;
	font-weight: 400;
	color: #1e1e1e;
	padding: 10px 30px;
	border-radius: 100px;
	background: #d5b578;
	text-decoration: none;
	transition: all 0.3s ease;
}
.header__buttons-login:hover {
	background: #ce9a3b;
}
.header__buttons-register {
	font-size: 18px;
	line-height: 27px;
	font-weight: 400;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	background: #548053;
	text-decoration: none;
	transition: all 0.3s ease;
}
.header__buttons-register:hover {
	background: #375d37;
}

.main h1 {
	font-size: 22px;
	line-height: 36px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #eed5a9;
}
.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 30px 0;
	color: #eed5a9;
}
.main h3 {
	font-size: 18px;
	line-height: 30px;
	text-align: left;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #eed5a9;
}
.main strong {
	font-size: 20px;
	line-height: 30px;
	text-align: left;
	font-weight: 700;
	color: #eed5a9;
	margin: 0 0 18px 0;
}
.main ul,
.main ol {
	margin: 15px 0;
	padding: 0 0 0 15px;
}
.main ul li a,
.main ol li a {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin: 0 0 10px 0;
	color: #ada79b;
	text-decoration: none;
}
.main ul li a:hover,
.main ol li a:hover {
	color: #eed5a9;
}

.main .table {
	margin: 30px 0;
	width: 100%;
	overflow: auto;
}
.main .table table {
	width: 100%;
	border-collapse: collapse;
}
.main .table table td {
	padding: 10px;
	width: 50%;
	border: 1px solid #363129;
}
.main .img-cov {
	width: 100%;
}
.main .img-cov img {
	max-width: 100%;
}
