.post {
	width: 60%;
	display: flex;
	flex-direction: column;
	margin: 2rem;
}

.post .title {
	font-size: 4rem;
	font-weight: bold;
	margin: 0 0 2rem 0;
	color: var(--primary-color);
}

.post .abstract {
	font-size: 3rem;
	margin: 0 0 2rem 0;
	color: var(--primary-color);
}

.post .content {
	margin: 0 0 2rem 0;
}

@media (orientation: portrait) {
	.post {
		width: 90%;
	}
}