@media screen and (max-width: 894px){
	:root{
		font-size: 14px;
	}

	body{
		grid-template-columns: 1fr;
		grid-template-rows: 0.2fr 0.8fr;
		grid-template-areas:
		"profile"
		"timeline";
	}

	aside{
		border-right: none;
		padding: 32px 12px;
	}

	nav{
		overflow-y: visible;
		padding: 1.5rem;
	}
}