body {
	margin: 0;
	background: #FFFFFF;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	display: flex;
	justify-content: center;
}	  

.wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 60px 20px 20px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.text-section {
	max-width: 520px;
	flex: 1 1 40%;
}

h1 {
	font-size: 48px;
	margin-bottom: 10px;
}

.description {
	font-size: 24px;
	margin-bottom: 30px;
}

.description .highlight {
	font-size: 24px;
}

.md5 {
	font-size: 14px;
	color: #666;
}

.download {
	display: inline-block;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	background-color: #3AA670;
	color: #fff;
	border: none;
	border-radius: 28px;
	text-decoration: none;
	text-align: center;
	margin-top: 10px;
}

.screenshot {
	max-width: 720px;
	width: 100%;
	flex: 1 1 60%;
	border-radius: 12px;
}
.feedback {
	font-size: 18px;
	color: #E63547;
	text-align: center;
	margin-top: 40px;
	width: 100%;
}
a.feedback {
	text-decoration: none;
}

.copyright {
	font-size: 14px;
	color: #666;
	text-align: center;
	margin-top: 40px;
	width: 100%;
}

@media (max-width: 1280px) {
	.wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.text-section {
		max-width: 100%;
		margin-bottom: 40px;
	}
}