.about {
	padding: var(--space-m);
	margin-top: var(--space-l);
	border-radius: 16px;
	border: 1px solid var(--color-grey);
	flex-flow: wrap;
    justify-content: center;
    text-align: center;
}

.about .portrait {
	width: 100%;
}

.about .portrait_img {
	max-width: 180px;
	max-height: 180px;
	border-radius: 100%;
}

.about .about_text {
	width: 100%;
}

.about .about_text h3 {
	margin-top: 0;
}

@media screen and (min-width: 50rem) {
	.about {
		flex-flow: nowrap;
	    justify-content: flex-start;
	    text-align: left;
	}
	.about .portrait {
		margin-right: var(--space-m);
		width: auto;
	}
	.about .about_text {
		width: auto;
	}
}