/** * 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;}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;}

html, body
{
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	background: #fff;
	color: #3E3D4D;
}

html
{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

*, *:before, *:after
{
 	box-sizing: inherit;
}

.wrapper
{
	padding-top: 40px;
	margin: 0 auto;
}

#header
{
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 2em;
	padding: 0 20px;
}

h1
{
	display: block;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 2.5em;
	margin-bottom: 0.7em;
	font-family: 'Permanent Marker', cursive;
	text-transform: uppercase;
}

.profile-pic 
{
	width: 128px;
	height: 128px;
	border-radius: 64px;
}

.container
{
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
}

.padding
{
	padding: 2em 0;
}

.social
{
	padding-bottom: 2em;
	border-bottom: 1px solid #aaa;
}

.social li
{
	display: block;
	line-height: 2em;
}

.social li a
{
	/*color: #d10b80;*/
	display: inline-block;
	border-bottom: 0;
}

.social li i
{
	font-size : 1.25em;
	vertical-align: middle;
	margin-right: 0.15em;
	width: 1.25em;
	text-align: center;
}

.social li .social-text {
	vertical-align: middle;
	line-height: 1.7em;
	font-size: 1em;
}

a
{
	color: #3E3D4D;
	text-decoration: none;
	border-bottom: 1px dotted #aaa;
}

a:hover
{
	color: #4b43b7;
}

p
{
	line-height: 1.7em;
	padding: 0 0 1.7em;
}

.project
{
	max-width: 600px;
	padding: 0 20px;
	margin: 0 auto;
	margin-bottom: 2em;
}

.project img
{
	width: 100%;
	max-width: 560px;
	display: block;
}

.project a.image-link
{
	border: 0;
}

.project-info
{
	position: relative;
	width: 100%;
	color: #000;
	padding: 0 0 0.7em;
	/*border-bottom: 1px solid #eee;*/
	/*border-top: 1px solid #eee;*/
}

.project-info p
{
	padding: 0;
	margin: 0;
	font-size: 0.875em;
	line-height: 1.7em;
}

.platforms
{
	float: right;
}

p.game-title
{
	font-size: 1.125em;
}

.soundcloud-wrapper
{
	display: block;
	width: 100%;
}

.soundcloud-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
	margin: 0 auto;
}

.soundcloud-container iframe,
.soundcloud-container object,
.soundcloud-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 1200px)
{
	.wrapper
	{
		margin: 0 auto;
		max-width: 1200px;
	}

	#header
	{
		display: inline-block;
		width: 600px;
	}

	h1
	{
		margin-left: 0;
	}

	.social
	{
		border-bottom: 0;
	}

	.project
	{
		display: inline-block;
		vertical-align: top;
		width: 600px;
	}
}

