* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Helvetica', sans-serif;
}
body {
	background: #e0ded9;
}
.container {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}
/* header */
.header {
	padding: 15px 0;
	background: #2f2c23;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__logo {
	width: 175px;
	height: 70px;
}
.header__logo img {
	width: 100%;
	height: 100%;
}
.header__list {
	list-style: none;
}
.header__list a {
	color: #409900;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	text-decoration: none;
}
.header__burger {
	display: none;
}
/* footer */
.footer {
	padding: 20px 0;
	background: #2f2c23;
}
.footer__descr {
	color: #e0ded9;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}

/* main */
.main {
	padding: 20px 0;
}
.content {
	padding: 40px;
	border-radius: 20px;
	background: #efeadd;
	color: #131006;
}
h1 {
	font-weight: 400;
	font-size: 42px;
	line-height: 50px;
	margin: 0 0 40px 0;
}
h2 {
	font-weight: 400;
	font-size: 30px;
	line-height: 40px;
	margin: 0 0 20px 0;
}
h3 {
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	margin: 0 0 20px 0;
}
p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin: 0 0 10px 0;
}
.content ul,
.content ol {
	padding: 0 0 0 50px;
	margin: 0 0 20px 0;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 30px 0;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	width: 50%;
	padding: 15px 10px;
	border: 1px solid #131006;
}
/* games */
.games {
	margin: 0 0 20px 0;
}
.game {
	padding: 25px 35px;
	background: #f5f7f9b2;
	border: 1px solid #cbd4db;
	border-radius: 24px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 15px;
	margin: 0 0 20px 0;
}
.game__item {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 35px;
}
.game__item:last-child {
	padding: 0 0 0 25px;
	border-left: 1px solid #e0e0e0;
	flex-direction: column;
	justify-content: center;
}
.game__img {
	width: 100%;
	height: 100%;
}
.game__img img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

.game__info h3 {
	white-space: nowrap;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #40a700;
	margin: 0 0 10px 0;
}

.game__rating {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	margin: 0 0 15px;
}
.game__list {
	padding: 0 !important;
	list-style: none;
}
.game__list li {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #131006;
	white-space: nowrap;
}

.game__btn {
	width: fit-content;
	background: linear-gradient(180deg, #ffdd00 0%, #ff7700 100%);
	padding: 15px 20px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.page-menu a {
	text-decoration: none;
	color: #409900;
}
.img-bock {
	width: 100%;
	height: 100%;
	margin: 30px 0;
}
.img-bock img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 768px) {
	.content {
		padding: 30px;
	}
	h1 {
		font-size: 25px;
		line-height: 30px;
	}
	h2 {
		font-size: 22px;
		line-height: 28px;
	}
	h3 {
		font-size: 18px;
		line-height: 24px;
	}
	.header__logo {
		width: 110px;
		height: 45px;
	}
	.header__burger {
		display: block;
	}
	.header__nav {
		display: none;
	}

	/* game */
	.game {
		padding: 16px;
	}
	.game,
	.game__item {
		flex-direction: column;
		align-items: center;
	}
	.game__item {
		gap: 50px;
	}
	.game__item:last-child {
		padding: 0;
		border-left: none;
	}
}
.footer__menu{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	list-style: none;
	margin-bottom: 15px;
}
.footer__menu a {
	text-decoration: none;
	color: #e0ded9;
}