html {
	height: 100%;
	width: 100%;
}

.body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.aside-wrapper {
	flex-shrink: 1;
	flex-grow: 1;
	overflow: hidden;
}

.has-aside {
	flex-direction: row-reverse;
	display: flex;
	flex-wrap: wrap;
}

.scroll-area {
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
}

.scroll-area>section {
	width: 100vw;
}

.limit-width {
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1rem;
}

.flex-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex-row>*:not(:last-child) {
	margin-right: 1rem;
}

.flex-center {
	align-items: center;
}