@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*, *::before, *::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100%;
	font-family: 'Noto Sans', system-ui, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	overflow-x: hidden;
	background: #ebebeb;
	color: #282828;
}
input, select, textarea, button {
	outline: 0;
	font-size: inherit;
	line-height: initial;
	font-family: inherit;
	font-weight: inherit;
}
button {
	border: 0;
	background: inherit;
	cursor: pointer;
}
button:disabled,
input:disabled,
select:disabled {
	cursor: default;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
ul, li {
	list-style: none;
}
a {
	text-decoration: none;
	transition: color .15s;
}
p {
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 35px;
	margin-bottom: 15px;
}

.container {
	max-width: 990px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	background: linear-gradient(120deg, #D0CCC6, #384A56);
	margin-bottom: 90px;
}
.header .container {
	min-height: 90px;
	padding: 10px 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.header__menu {
	display: flex;
	flex-wrap: wrap;
}
.header__menu a {
	padding: 5px 20px;
	font-size: 30px;
	transition: color .15s;
	color: #fff;
}
.header__menu a:hover {
	color: #e2e2e2;
}

.game {
	margin-bottom: 100px;
}
.game .container {
	max-width: 737px;
}
.game__image {
	margin-bottom: 35px;
	max-width: 737px;
}
.game__image img {
	border-radius: 50px;
	box-shadow: 0px 1px 0px rgb(0 0 0 / 20%);
}
.game__title {
	font-size: 30px;
	margin-bottom: 30px;
}
.game__links {
	max-width: 737px;
	text-align: center;
}
.game__links a {
	display: inline-block;
	margin: 0 15px 10px 0;
}
.game__links a img {
	transition: transform .15s;
}
.game__links a:hover img {
	transform: scale(.975);
}

.content {
	margin-bottom: 100px;
}
.content h1 {
	text-align: center;
	font-size: 42px;
	margin-bottom: 60px;
}

.footer {
	padding: 30px 0;
	text-align: center;
}
.footer__menu {
	margin-bottom: 8px;
}
.footer__menu a {
	color: #000;
	padding: 5px 10px;
	font-size: 18px;
	display: inline-block;
}
.footer__menu a:hover {
	color: #4f4f4f;
}
.footer__contacts {
	margin-bottom: 25px;
}
.footer__contacts a {
	padding: 5px 5px;
	display: inline-block;
	transition: opacity .15s;
}
.footer__contacts a:hover {
	opacity: .75;
}
.footer__copyright {
	color: #7f7f7f;
}