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

* {
  margin: 0;
  padding: 0;
  font-style: inherit;
  cursor: default;
  outline: 0;
	text-rendering: optimizeLegibility;
  -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 */
	}


/*------------------------------------*\
  Document default
\*------------------------------------*/

body, html {
  width: 100%;
  height: 100%;
  font-family: "aaux-next", "Helvetica Neue", "Liberation Sans", FreeSans, Arial, sans-serif;
  font-size: 16px; 
  font-weight: 400;
  color: #b3b3b3; /* Font Color Color Here */
  background: #353738; 
}

body {
	background-color: #353738; /* Change Background Color Here */
}

a, a:visited {
  color: #abcc52;
  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: 3px solid rgba(255,255,255,0.2);
}

a:hover, a:visited:hover {
    color: #e7ffa6; }

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

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

#contain #content {
  width: 420px;
  padding: 20px;
}

#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; }

#wrap #contain #content {
  display: inline-block; }

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

#header {
  margin: 0 0 24px;
  position: relative; 
  font-size: 33px; 
  font-weight: 200;
}


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

#intro {
	text-align: center;
	margin-bottom: 8px;
  display: block;
}

#intro a {
  color: #abcc52;
 }

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

#networks {
	padding-top: 14px;
}

#networks {
	display: flex;
	justify-content: center;
	align-items: center;
}

#networks .icon-link {
	display: block;
	padding: 8px;
	margin: 0 4px;
}

#networks .icon-link,
#networks .icon-link * {
	cursor: pointer;
}

#networks .icon {
	fill: rgba(255, 255, 255, 0.3);
	transition: fill 0.15s ease;
}

#networks .icon-link:hover .icon {
	fill: #e7ffa6;
}

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

#footer {
  font-size: 14px;
  color: #4783e6;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  margin: 40px 0 0;
}

#footer footer a {
  color: #abcc52;
}

#footer footer a:hover {
  color: #e7ffa6;
}

/*------------------------------------*\
  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; }