/**
 * Simple CSS
 * Converted from simple.scss
 * Simple, clean styling for editorial/informational pages
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.6;
}

body {
	background: #ffffff;
	color: #333333;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	margin: 0 auto;
	max-width: 800px;
	padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
	color: #111111;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.5em;
	margin-top: 1.5em;
}

h1 {
	border-bottom: 2px solid #eeeeee;
	font-size: 2.5rem;
	padding-bottom: 0.3em;
}

h2 {
	border-bottom: 1px solid #eeeeee;
	font-size: 2rem;
	padding-bottom: 0.3em;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 1em 0;
}

a {
	color: #0066cc;
	font-weight: 600;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

code {
	background: #f5f5f5;
	border-radius: 3px;
	font-family: Monaco, 'Courier New', monospace;
	font-size: 0.9em;
	padding: 2px 6px;
}

pre {
	background: #f5f5f5;
	border-radius: 5px;
	overflow-x: auto;
	padding: 15px;
}

pre code {
	background: none;
	padding: 0;
}

ul, ol {
	margin: 1em 0;
	padding-left: 2em;
}

li {
	margin: 0.5em 0;
}

blockquote {
	border-left: 4px solid #dddddd;
	color: #666666;
	font-style: italic;
	margin: 1.5em 0;
	padding-left: 1.5em;
}

table {
	border-collapse: collapse;
	margin: 1.5em 0;
	width: 100%;
}

th, td {
	border: 1px solid #dddddd;
	padding: 10px;
	text-align: left;
}

th {
	background: #f5f5f5;
	font-weight: 700;
}

img {
	display: block;
	height: auto;
	margin: 1.5em 0;
	max-width: 100%;
}

hr {
	border: none;
	border-top: 1px solid #dddddd;
	margin: 2em 0;
}

/* Responsive */
@media (width <= 768px) {
	body {
		padding: 15px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}
}
