.main {
	align-items: flex-start;
	margin-top: 20px;
}
.main .navigation {
	width: 30%;
	max-width: 210px;
	color: #736f76;
	margin-right: 15px;
	border-radius: 10px;
	background-color: white;
}
.main .navigation .item {
	padding: 10px 15px;
}
.main .content {
	flex: 1;
	padding: 0 20px;
	border-radius: 10px;
	background-color: white;
}
.main .content * {
	word-break: break-all;
	white-space: break-spaces;
}
.main .content h1 {
	font-size: 22px;
	font-weight: bold;
	margin: 20px 0;
}
.main .content p {
	margin-bottom: 20px;
}
.main .content code {
	width: 100%;
}
.main .content table {
	width: 100%;
}
.main .content table tbody tr {
	border-top: 1px solid #eaeaeb;
}
.main .content table th, .main .content table td {
	padding: 20px 20px 20px 0;
}
.main .content code {
	display: block;
	width: 100%;
	color: white;
	padding: 15px;
	border-radius: 15px;
	background-color: black;
}