/* === Grid=== */
#main section.section {
	padding-top: 4em;
	padding-bottom: 4em;
}
#main section .section-content .row {
	margin-left: 0;
	margin-right: 0;
}
#main section .section-content .row > .column {
	padding: 0;
}

@media only screen and (max-width: 1068px) {
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

@media only screen and (max-width: 734px) {
	#main section.section {
		padding-top: 3em;
		padding-bottom: 3em;
	}
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

/* code colors */
.terminal {
	margin-top: 1em;
	margin-bottom: 2em;
	background-color: #f9fafa;
}

.bg-light .terminal {
	background-color: #fff;
}

.terminal pre {
	border: none;
	border-left: 1px solid #dadada;
	border-radius: 0;
	margin-left: 1em;
	padding-left: 1em;
	background-color: transparent;
}

.terminal pre code {
	color: #ad8200;
}

.terminal pre code .comment {
	color: #a13535;
}

.terminal pre code .method {
	color: #10295d;
}

.terminal pre code .name {
	color: #03a10e;
}

.terminal pre code .num {
	color: #60708a;
}

.terminal pre code .text {
	color: #000000;
}

.terminal pre code .title {
	color: #29085d;
}

/* code colors dark mode */
body[data-color-scheme="dark"] .terminal {
	background-color: rgba(255, 255, 255, 0.1);
}
body[data-color-scheme="dark"] .bg-light .terminal {
	background-color: #000000;
}
html body[data-color-scheme="dark"] .terminal pre {
	border-color: rgba(214, 214, 214, 0.2);
}
body[data-color-scheme="dark"] .terminal pre code {
	color: #ad8200;
}
body[data-color-scheme="dark"] .terminal pre code .comment {
	color: #e16a6a;
}
body[data-color-scheme="dark"] .terminal pre code .method {
	color: #6082f6;
}
body[data-color-scheme="dark"] .terminal pre code .name {
	color: #73a863;
}
body[data-color-scheme="dark"] .terminal pre code .num {
	color: #8c99aa;
}
body[data-color-scheme="dark"] .terminal pre code .text {
	color: #eeeeee;
}
body[data-color-scheme="dark"] .terminal pre code .title {
	color: #b48af7;
}
