* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.center-wrapper {
	display: grid;
	place-items: center;
	height: 100vh;
}

.container {
	text-align: center;
	max-width: 731px;
	width: 100%;
}

.container img {
	margin-left: 25px;
	width: 430px;
}

.container h1 {
	color: rgba(43, 48, 51, 1);
	font-family: "Montserrat", sans-serif;
	font-size: 33px;
	font-weight: 700;
	font-style: bold;
	padding-bottom: 39px;
}

.container p {
	color: rgba(43, 48, 51, 1);
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 500;
	font-style: medium;
}

/* Оригинал слева сверху */
.top-left-img {
	position: fixed;
	top: 0;
	left: 0;
	/* height: auto; */
}

/* Зеркальная копия справа снизу */
.bottom-right-img {
	position: fixed;
	bottom: 0px;
	right: 0px;
	height: auto;
	transform: scaleX(-1) scaleY(-1);
}

@media screen and (max-width: 730px) {
	.container {
		text-align: center;
		margin-top: 160px;
	}
	.container img {
		width: 280px;
	}
	.container h1 {
		font-size: 24px;
	}
	.container p {
		font-size: 18px;
		padding-bottom: 20px;
	}
	.bottom-right-img {
		width: 114px;
	}
	.top-left-img {
		width: 114px;
	}
}
