/*------------------------------------*\
  CSS Reset
\*------------------------------------*/

* {
  margin: 0;
  padding: 0;
  font-style: inherit;
  cursor: default;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }


/*------------------------------------*\
 	Highlight Seclections 
\*------------------------------------*/

	::selection {
		background: #666566;
		color: #fff;
		text-shadow: none; /* Safari */
	}

	::-moz-selection {
		background: #666566;
		color: #fff;
		text-shadow: none; /* Firefox */
	}







body,
html {
  width: 100%;
  height: 100%;
  font: 400 16px/26px 'Source Sans Pro', sans-serif;
  
}


a, a:visited {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

a.highlight:hover {
	border-bottom: 2px solid rgba(255,255,255,0.3);
}


img.avatar {
	width: 150px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*------------------------------------*\
  Site box
\*------------------------------------*/

#contain #content {
  
}

#contain #content * {
  text-align: center; }

/*------------------------------------*\
  Centralised box
\*------------------------------------*/

#wrap {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  z-index: 5; }

#wrap #contain {
  text-align: center;
  vertical-align: middle;
  display: table-cell; }



/*------------------------------------*\
  Header
\*------------------------------------*/

#header {
  margin: 0;
  position: relative; 
}


/*------------------------------------*\
  Skills
\*------------------------------------*/

#intro {
  font-size: 26px;

  line-height: 30px;
  text-align: center;
  margin-bottom: 24px;
  display: block; 
}

#intro a {
  color: #fff;
 }

/*------------------------------------*\
  Networks
\*------------------------------------*/

#networks {
	margin-top: 44px;
	padding: 22px;
	
	background: #fff;
}

#networks a {
	text-align: center;
	margin: 0 8px; 
	font-size: 30px;
	/* opacity: 0.5; */
	font-family: 'icomoon';
	
	line-height: 55px;
}

#networks a:first-child {
	margin-left: 0px;
}

#networks a:hover
{
	color: #000;
}

/*------------------------------------*\
  Footer
\*------------------------------------*/

#footer
{
  font-size: 14px;
  
  margin: 44px 0 22px 0;
  
}

#footer a
{
	font-weight: bold;
}

/*------------------------------------*\
  Clearfix
\*------------------------------------*/

.clear, #header, #footer {
  zoom: 1; }

.clear:before, #header:before, #footer:before, .clear:after, #header:after, #footer:after {
    content: '';
    display: block; }

.clear:after, #header:after, #footer:after {
    clear: both; }