@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

html {
	font-family: 'Poppins', Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #717171;
	background: #fff;
}
body {
	margin: 0;
	padding: 0;
}
main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	padding-top: 30px;
	padding-bottom: 30px;
	margin: 0 auto;
	min-height: 100vh;
	box-sizing: border-box;
}
div {
	box-sizing: border-box;
}
.logo-wrapper {
	width: 100%;
	padding: 0 40px;
	margin-bottom: 55px;
	text-align: center;
}
.logo {
	width: 100%;
	max-width: 350px;
}
.content {
	width: 100%;
	padding: 0 40px;
	font-size: 20px;
	text-align: center;
}
h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	color: #7AC142;
    margin: 0 0 30px;
}
p {
	font-size: 27px;
	line-height: 1.4;
	color: #717171;
    margin: 0 0 30px;
}
img {
	max-width: 100%;
}
@media (max-width: 991px) {
	.logo {
		max-width: 250px;
	}
	h1 {
		font-size: 30px;
	}
	p {
		font-size: 20px;
	}
}