@font-face {
	font-family: OpenSauce;
	src: url(../fonts/OpenSauceOne-Regular.ttf);
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: OpenSauce;
	src: url(../fonts/OpenSauceOne-Italic.ttf);
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: OpenSauce;
	src: url(../fonts/OpenSauceOne-Black.ttf);
	font-style: normal;
	font-weight: 700;
}

/* RESET */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	background-color: #EFEFEF;
}
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;
}

/* MAIN, typography */

html {
	font-family: OpenSauce;
	font-size: 16px;
}

body {
	line-height: 1.5;
}

h1, h2, h3, h4 {
	font-size: 3rem;
}

h1, h3, strong {
	font-weight: 700;
}

a {
	color: #000;
	background-color: #FFF;
}

article h1, article h2 {
	font-size: 1.5rem;
}

em, cite {
	font-style: italic;
}

/* MAIN, blocks */

body {
	width: 50rem;
	margin: 0 auto;
}

header {
	margin: 3rem 0;
}

header h1, header h2, header h3, header h4 {
	display: inline-block;
	margin-right: .5em;
}

header a {
	background-color: #CCC;
}

main {
	font-size: 1rem;
}

main.menu {
	font-size: 0;
}

main.releases article {
	width: 48%;
	display: inline-block;
}

main.releases article:nth-child(odd) {
	margin-right: 2%;
}

main.releases article.collabs {
	width: 24%;
	margin-right: 1%;
	margin-top: 1.5rem;
}

article.related, main.releases article.related {
	width: 24%;
	margin-right: 1%;
}

article.related h1 {
	margin-bottom: 1.5rem;
}

main.releases article.collabs h1, main.releases article.collabs h2 {
	font-size: 1rem;
	font-weight: 400;
	display: inline;
}

hr {
	margin-bottom: 1.5rem;
}

footer {
	margin: 1.5rem 0;
	border-top: 2px solid #000;
	padding-top: 1.5rem;
}

footer ul li {
	display: inline-block;
	margin-right: 1em;
}

article {
	font-size: 1rem;
	margin: 0;
	margin-bottom: 1.5rem;
	vertical-align: top;
}

article h1, article h2 {
	/* margin-top: 1rem; */
	display: inline;
}

article h1 {
	margin-right: .5rem;
}

article p {
	margin-bottom: 0;
}

iframe {
	margin-top: 1.5rem;
}

div iframe {
	margin-top: 0;
}

main div {
	margin-bottom: 1.5rem;
}

p, ul, ol {
	margin-bottom: 1.5em;
}

ol li {
	list-style: decimal;
	margin-left: 1.5em;
}

p img {
	width: 100%;
}

p.cover img {
	width: 50%;
}

p.logo img {
	width: 150px;
}

/* TABLET */

@media (max-width: 800px) and (min-width: 501px) {
	
	body {
		width: 90%;
		line-height: 1.4;
	}
	
}

/* MOBILE */

@media (max-width: 500px) {

	body {
		line-height: 1.25;
		width: 90%;
		margin: 0 auto;
	}
	
	h1, h2, h3, h4 {
		font-size: 2rem;
	}
	
	main.releases article {
		width: 100%;
		margin-right: 0;
	}
	
	main.releases article.collabs {
		width: 48%;
		margin-right: 2%;
		margin-top: 1.5rem;
	}
	
	footer ul li {
		display: list-item;
	}
	

}