.piece {
	display: flex;
}

.piece:not(:last-child) {
	margin-bottom: 5em;
}

.piece .column {
	display: flex;
	flex-direction: column;
}

.piece .column img:not(:last-child) {
	margin-bottom: 0.5em;
}

.piece .column:first-child {
	width: 50%;
	margin-left: auto;
}

.piece .column:last-child {
	margin-right: auto;
}

.piece .column:not(:first-child) {
	width: 20%;
}

.piece .column:not(:last-child) {
	margin-right: 0.5em;
}

.piece .description {
	width: 200%;
	text-align: center;
}

.piece .description .title {
	color: #7aaae8;
}

.piece .description .italic {
	font-style: italic;
}

.piece img {
	width: 100%;
}

@media (max-width: 575.98px) {
	section {
		flex-direction: row;
	}
}

