/* Eric Meyer's Reset CSS v2.0 
   http://meyerweb.com/eric/tools/css/reset
 * http://cssreset.com
 */
 
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;
}
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;
}

/* Box sizing reset 
   Thanks to Paul Irish
   http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* */
html, body {
	font-family: 'Montserrat';
	font-size: 16px;
	color: #333;
	line-height: 1.3;
}

a {
	color: inherit;
}

h1 {
	font-size: 30px;
	margin-bottom: 1em;
}

.inline-code,
.no-meta {
	background-color: #fff;
	margin-bottom: 1em;
}
.inline-code:before { content: '<';}
.inline-code:after { content: '>';}


ol li {
	text-align: left;
	margin-bottom: 10px;
}

.container {
	text-align: center;
	padding: 20px;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}


.large-screen,
.medium-screen,
.small-screen {
	display: none;
}


@media screen and (min-width: 960px) {
	body { 
		background-color: green; 
	}
	.large-screen {
		display: block;
	}
}

@media screen and (max-width: 960px) and (min-width: 500px) {
	body { 
		background-color: pink; 
	}
	.medium-screen {
		display: block;
	}
}

@media screen and (max-width: 500px) {
	body { 
		background-color: yellow; 
	}
	.small-screen {
		display: block;
	}
}
		

