* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: #0a0b10;
	background-image: url('bg.png');
	margin: 0;padding: 0;
	font-family: "Roboto Slab", Helvetica, sans-serif;
	color:#fff;
}
.container {
	width: 100%;
	max-width: 600px;
	padding: 8px 16px;
	margin: 0 auto;
}
h2 {
	font-size:28px;
}
p {
	font-size:20px;
	line-height: 1.618;
}
p, h2, .buttons, .images {
	margin-top: 16px;
}
img {
	display: block;
	margin: 0 auto;
}
img.title {
	width:90%;
}
.images {
	display: flex;
	align-items: flex-start;
}
.images img {
	width: 100%;
	margin: 0 8px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.buttons {
	display: flex;
	justify-content: center;
	align-items: center;
}
.buttons a {
	margin: 0 8px;
}
a, a img {
	border:0;
	text-decoration: none;
}

@media (max-width: 640px) {
	.buttons {
		flex-direction: column;
	}
	.images {
		flex-wrap: wrap;
	}
	.images img {
		width: calc(50% - 16px);
		margin: 8px;
	}
}
