/* latin-ext */
@font-face 
{
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Source Code Pro'), local('SourceCodePro-Regular'), url(https://fonts.gstatic.com/s/sourcecodepro/v7/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face 
{
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Source Code Pro'), local('SourceCodePro-Regular'), url(https://fonts.gstatic.com/s/sourcecodepro/v7/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*{
	margin: 0;
	padding: 0;
}

html
{
	height: 100%;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background: linear-gradient(0deg, #f06c00, #ff9100, #ffb114) no-repeat center center fixed;
}

header
{
	padding: 0;
	margin: 0;
	position: fixed;
	width: 100%;
	height: 150px;
	z-index: 2;
	background: #1f1400;
}

header div
{
	display: inline-block;
	padding-left: 50px;
}

.logo
{
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
	margin-top: 20px;
	background-image: url("https://cdnb.artstation.com/p/assets/images/images/006/566/285/large/dylan-randall-venom-nosiliva-hdhd.jpg?1499590270");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border-radius: 50%;
	box-shadow:
        inset 0 0 2px #fff,      /* inner white */
        inset 2px 0 10px #f0f,   /* inner left magenta short */
        inset -2px 0 10px #0ff,  /* inner right cyan short */
        inset 2px 0 15px #f0f,  /* inner left magenta broad */
        inset -2px 0 15px #0ff, /* inner right cyan broad */
        0 0 1px #fff,            /* outer white */
        -6px 0 24px #f0f,        /* outer left magenta */
		6px 0 24px #0ff; /* outer right cyan */
}

.title
{
	display: inline-block;
	position: relative;
	color: #FFFDFA;
	text-align: left;
	padding-left: 32px;
	vertical-align: top;
	margin-top: 32px;
	font-family: "Source Code Pro";
}

.title h1
{
	font-size: 2.2em;
}

.title h2
{
	font-size: 1.6em;
}

#content
{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: calc(892px * 80%);
	padding-top: 235px;
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 40px;
}

.repo
{
	display: inline-block;
	position: relative;
	background-color: #FFFDFA;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	width: 200px;
	height: 250px;
	padding: 5px;
	margin: 5px;
}

.repo h1
{
	font-family: "Source Code Pro";
	font-size: 1em;
	text-align: center;
	margin-top: 15px;
}

.repo:hover
{
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
	cursor:pointer;
}

.repo:hover .overlay
{
	opacity: 1;
}

.thumb
{
	position: relative;
	width: 200px;
	height: 200px;
	overflow: hidden;
	background: #333;
}

.thumb img
{
	position: relative;
	width: 100%;
	height: 100%;
}

.center
{
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
}

.overlay 
{
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 5px;
  right: 0;
  height: 200px;
  width: 200px;
  opacity: 0;
  transition: opacity .4s ease-in-out;
  background-color: #1f1400;
}

.overlay p
{
	font-family: "Source Code Pro";
	font-size: 0.8em;
	color: #FFFDFA;
	padding: 10px;
}

a
{
	color: inherit;
	text-decoration: inherit;
}

nav
{
	padding: 0;
	margin: 0;
	margin-top: 150px;
	position: fixed;
	width: 100%;
	height: 80px;
	z-index: 2;
	background: #1f1400;
}

nav ul
{
	list-style: none;
	color: #FFFDFA;
	font-family: "Source Code Pro";
	font-size: 1em;
}

nav li
{
	display: inline-block;
}

.nav-center
{
	display: inline-block;
	position: relative;
	padding-left: 55px;
	padding-top: 40px;
}

.nav-center a
{
	padding: 10px;
	font-size: 1.2em;
}

.nav-center a:hover, .nav-center a:active
{
	border-radius: 5px;
	box-shadow:
		inset 0 0 2px #fff,      /* inner white */
        inset 2px 0 10px #f0f,   /* inner left magenta short */
        inset -2px 0 10px #0ff,  /* inner right cyan short */
        inset 2px 0 15px #f0f,  /* inner left magenta broad */
        inset -2px 0 15px #0ff, /* inner right cyan broad */
        0 0 1px #fff,            /* outer white */
        -6px 0 24px #f0f,        /* outer left magenta */
		6px 0 24px #0ff; /* outer right cyan */
}

@media only screen and (max-width: 600px) 
{
	.title
	{
		display: none;
	}
	
	.logo
	{
		margin-left: 45px;
	}
}