@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
	font-family: Roboto, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px;
}
.grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(10px, 5fr));
	grid-gap: 20px;
	align-items: stretch;
}
.grid > article {
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
}
.grid > article img {
	max-width: 100%;
}
.grid .text {
	padding: 20px;
}
