html {
  scrollbar-gutter: stable;
}

body {
	width: 90%;
	max-width: 70rem;
	margin: 0 auto 20rem auto;
	font-family: Georgia;
	font-size: 1.2rem;
	background-color: #1e1e1e;
	color: #e5e5e5;
}

.name_heading {
	margin-bottom: 0.8rem;
}

header {
	margin-bottom: 2rem;
}

.title {
	text-decoration: underline;
}

a {
	text-decoration: none;
	color: #7fc1fb;
}

a:hover {
	text-decoration: underline;
}

.home_heading {
	margin-bottom: 0.5rem;
}

.home_list {
	list-style-type: none;
	padding: 0;
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}

.home_list > li {
	margin-bottom: 0.5rem;
}

pre {
	overflow-x: auto;
	font-size: 1.05rem;
	background-color: #2e2e2e;
	padding: 0.5rem;
	tab-size: 4;
}

.inline_code {
	font-size: 1.05rem;
	background-color: #3a3a3a;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}

img {
  max-width: 100%;
}

.math_block {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

/*
Right aligning text in the left column of the table is not working.
https://stackoverflow.com/questions/79936576/aligning-text-in-an-html-math-table
*/
.math_td_left {
	/* text-align: right; */
	padding-right: 0;
}

.math_td_right {
	text-align: left;
	padding-left: 0;
}