main > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 60%;
	margin: auto;
}

.picture {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(25% - 10px);
}

.picture img {
	height: 190px;
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border: 1px solid #ccc;
}

.picture p {
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	margin: 10px auto;
}