/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	margin: 20px;
	color: rgba(255, 255, 255, 0.72);
	background-color: #212121;
}

body, input, select, textarea, button {
	font-family: 'Helvetica';
	font-size: 1.5rem;
	line-height: 1.5;
}

a {
	color: #428bca;
	text-decoration: none;
}

a:hover {
	color: #eeebb5;
	text-decoration: underline;
}

.logo {
	margin-top: 3rem;
	text-align: center;
}

.logo img {
	width: 180px;
	border: 6px solid rgba(77, 77, 77, 0.87);
	border-radius: 90px;
}

.splash {
	text-align: center;
	margin: 0 auto;
	max-width: 700px;
}

.main-section {
	margin: 0 auto;
	max-width: 700px;
}

.post-body {
	margin: 0 auto;
	max-width: 800px;
}

.post-body p {
	margin-bottom: 1.5rem;
}

.post-body h1, h2 {
	margin-bottom: 1rem;
}

.post-body h2 {
	margin-top: 3rem;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
	font-weight: bold;
}

h2 {
	font-size: 1.8rem;
	font-weight: bold;
}

h3 {
	font-size: 1.8rem;
	font-weight: bold;
}

.u-mb {
	margin-bottom: 0.25rem;
}

.u-mb-l {
	margin-bottom: 1.5rem;
}

.u-mb-xl {
	margin-bottom: 2.5rem;
}

.disc-list {
	list-style: disc;
	padding-left: 1rem;
}

.disc-list li {
	margin-bottom: 0.5rem;
}

.resp-image {
	width: 100%;
}


.blog-post {
	border-bottom: 1px solid #464646;
	padding: 1rem 0;
}

.blog-post-date {
	font-size: 1.25rem;
}
