.content-page {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--clevel-1);
	border-radius: 10px;
	padding: 25px;
	align-self: center;
	width: 80%;
	transition: var(--fade);
}

.screenshot-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 10px;
}

.screenshot-container > p, .list-img-desc {
	margin-bottom: 15px;
	max-width: 60%;
}

.screenshot-container > img {
	max-width: 100% !important;
	max-height: 100% !important;
}

@media only screen and (max-width: 1200px)
{
	.content-page { width: 100%; }
	.screenshot-container > p { max-width: initial; }
}