/*
body { 
	max-width: 700px; 
	margin: 40px auto; 
	font-family: sans-serif; 
	padding: 0 20px; 
}
*/

/*
a { 
	color: #333; 
}
*/

/*
.meta { 
	color: #999; 
	font-size: 0.85em; 
}
*/ 

html, body {
	overflow-x: hidden;
	width: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100dvh; /* dvh accounts for mobile browser chrome */
	background-color: #f8f9fa;
}

.flex-grow-1 {
	flex: 1;
}

.navbar-brand {
	font-weight: bold;
	letter-spacing: 1px;
}

.card {
	border: none;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* style markdown content */
.card-body img, div > img {
	max-width: 100%;
	border-radius: 6px;
	margin: 12px 0;
}

blockquote {
	border-left: 4px solid #dee2e6;
	padding-left: 1rem;
	color: #6c757d;
}

pre {
	background: #f1f3f5;
	padding: 1rem;
	border-radius: 6px;
	overflow-x: auto;
	line-height: 1.6;
	margin: 1rem 0;
}

pre code {
	background: none;
	padding:0;
	border-radius: 0;
	font-size: 0.9rem;
	line-height: inherit;
	display: block;
	color: inherit;
}

code {
	background: #f1f3f5;
	padding: 0.15rem 0.35rem;
	border-radius: 4px;
	font-size: 0.875em;
}


