* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: verdana, sans-serif;
}
.container {
	max-width: 800px;
	margin: 0 auto;
}
.container div {
	padding: 0 50px;
}
h1 {
	font-size: 30pt;
	color: purple;
}
.text {
	display: flex;
	justify-content: space-between;
}
.text p {
	width: 75%;
	font-size: 14pt;
	word-spacing: .7rem;
	line-height: 1.7rem;
	margin-bottom: 20px;
}
.text figure {
	width: 20%;
	font-size: 10pt;
}
.text img {
	width: 100%;
}
.images {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 20px;
}
.images img {
	width: 47%;
	height: auto;
	aspect-ratio: 1;
}