
/*
===============================================================================================
Color codes for easy replacement; just find these and replace with your preferred color scheme:

MAIN:
background: #0f0f0f
topbar and footer: #2e2e2e
yellow (title, links): #ffb76d

IMAGE GRADIENTS:
yellow: #eba972
red: #eb7272
violet: #bc5b92
blue green: #448d8d
===============================================================================================
*/

* {
	margin: 0;
	padding: 0;
}

::-webkit-scrollbar {background-color: #0f0f0f;height: 10px;width: 10px;}
::-webkit-scrollbar-thumb {background-color:#2e2e2e;height:10px; border: 4px solid #0f0f0f;}

body {
	background-color: #0f0f0f;
	font-family: 'Roboto Mono', monospace;
	font-size: 11px;
	color: #d6d6d6;
	line-height: 18px;
	overflow-x: hidden;
}

article {
	width: 100vw;
	background-color: transparent;
	margin: 0 auto;
	padding: 0 0 3vh 0;
	text-align: center;
	display: block;
	overflow-y: scroll;
	position: relative;
	z-index: 99;
}

header {
	margin: 0 auto;
	padding: 2vh 2vw;
	width: 96vw;
	background-color: #2e2e2e;
	line-height: 100%;
	text-align: center;
	position: fixed;
	display: table;
	vertical-align: middle;
	z-index: 9999;
	border-bottom: 1vw solid #0f0f0f;
}

#main { width: 50%; display: table-cell; text-align: left;}

h1 {
	margin: 0 auto;
	padding: 0 0 1px 0;
	background-color: transparent;
	color: #d6d6d6;
	font-size: 11px;
	font-weight: normal;
	line-height: 120%;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
	border-bottom: 1px solid #ffb76d;
}

h1::first-letter { padding: 0 0 0 0.1em; }

#main img {
	margin: 0 8px 0 0;
	max-width: 24px;
	height: auto;
	display: inline-block;
	border-radius: 100%;
	vertical-align: middle;
}

#social {
	width: 50%;
	margin: 0 auto;
	font-size: 8px;
	font-weight: normal;
	color: #d6d6d6;
	text-align: right;
	text-transform: uppercase;
	display: table-cell;
	vertical-align: middle;
}

#social li, figure li, footer li {
	display: inline-block;
	line-height: 100%;
}

#social li a, footer li a { 
	color: inherit;
	padding: 0 0 1px 0;
	display: inline-block;
	text-decoration: none;
	letter-spacing: 0.25em;
	border-bottom: 1px solid #d6d6d6;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
}

#social li a:hover, footer li a:hover {
	color: #ffb76d;
	border-color: #ffb76d;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
}

#social li a::first-letter, footer li a::first-letter { padding: 0 0 0 0.25em; }

#social li::after, footer li::after {
	content: '♦';
	font-size: 100%;
	color: #ffb76d;
	position: relative;
	margin: 0 1em 0 1.25em;
	display: inline-block;
}

figure li::after {
	content: '♦';
	font-size: 100%;
	color: inherit;
	position: relative;
	margin: 0 8px;
	display: inline-block;
}

#social li:last-child::after, figure li:last-child::after, footer li:last-child::after { display: none; }

section {
	margin: 10vh auto 0 auto;
	display: block;
	text-align: center;
}

section li { display: inline-block; }

figure {
	width: 200px;
	height: 300px;
	margin: 0 0.5vw 1vw 0.5vw;
	padding: 0;
	background-position: center center;
	background-repeat: no-repeat;
	color: #b8b8b8;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	display: inline-block;
	position: relative;
}

figure::after {
	content: '';
	background: #eb7272;
	background: -webkit-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eb7272 100%, rgba(0,0,0,0.001) 100%);
	background: -o-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eb7272 100%, rgba(0,0,0,0.001) 100%);
	background: -moz-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eb7272 100%, rgba(0,0,0,0.001) 100%);
	background: linear-gradient(210deg, rgba(0,0,0,0.001) 25%, #eb7272 100%, rgba(0,0,0,0.001) 100%);
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: table-cell;
	z-index: 30;
	opacity: 0.55;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
}

section li:nth-child(2n+1) figure::after {
	background: #bc5b92;
	background: -webkit-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #bc5b92 100%, rgba(0,0,0,0.001) 100%);
	background: -o-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #bc5b92 100%, rgba(0,0,0,0.001) 100%);
	background: -moz-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #bc5b92 100%, rgba(0,0,0,0.001) 100%);
	background: linear-gradient(210deg, rgba(0,0,0,0.001) 25%, #bc5b92 100%, rgba(0,0,0,0.001) 100%);
}

section li:nth-child(4n) figure::after {
	background: #448d8d;
	background: -webkit-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #448d8d 100%, rgba(0,0,0,0.001) 100%);
	background: -o-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #448d8d 100%, rgba(0,0,0,0.001) 100%);
	background: -moz-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #448d8d 100%, rgba(0,0,0,0.001) 100%);
	background: linear-gradient(210deg, rgba(0,0,0,0.001) 25%, #448d8d 100%, rgba(0,0,0,0.001) 100%);
}

section li:nth-child(4n+1) figure::after {
	background: #eba972;
	background: -webkit-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eba972 100%, rgba(0,0,0,0.001) 100%);
	background: -o-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eba972 100%, rgba(0,0,0,0.001) 100%);
	background: -moz-linear-gradient(240deg, rgba(0,0,0,0.001) 25%, #eba972 100%, rgba(0,0,0,0.001) 100%);
	background: linear-gradient(210deg, rgba(0,0,0,0.001) 25%, #eba972 100%, rgba(0,0,0,0.001) 100%);
}

figure:hover::after {
	opacity: 1;
	-webkit-transition: all 0.6s ease-out;
	-moz-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
}

.site {
	position: absolute;
	color: #ffffff;
	bottom: 0; left: 0;
	width: 86%;
	padding: 7%;
	font-size: 7px;
	display: block;
	margin: auto;
	z-index: 99;
	text-transform: uppercase;
}

.site h2 {
	margin: 0 auto 6px auto;
	font-size: 9px;
	font-weight: 700;
	border-bottom: 3px solid #ffffff;
	display: block;
}

#dlinks {
	margin: 0 auto;
	padding: 0;
	background-color: transparent;
	color: #d6d6d6;
	font-family: 'Roboto Mono', monospace;
	font-weight: normal;
	line-height: 100%;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
}

#dlinks li { display: inline-block; }

#dlinks a {
	margin: 0.5vh;
	padding: 5px 10px;
	color: inherit;
	font-size: 9px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	border: 1px solid #eba972;
	border-radius: 10px;
}

#dlinks a::first-letter { padding: 0 0 0 0.1em; }

#dlinks li:nth-child(2n+1) a {
	border-color: #448d8d;
}

#dlinks li:nth-child(4n) a {
	border-color: #bc5b92;
}

#dlinks li:nth-child(4n+1) a {
	border-color: #eb7272;
}

footer {
	margin: 1vh auto 0 auto;
	padding: 2.5vh 2vw;
	width: 96vw;
	background-color: #2e2e2e;
	line-height: 100%;
	font-size: 8px;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	display: table;
	vertical-align: middle;
}

#cred {
	background-color: transparent;
	font-size: 12px;
	color: #ffb76d;
	width: 24px; height: 24px;
	text-align: center;
	border-radius: 100%;
	position: absolute;
	top: 0; bottom: 0; right: 0;
	margin: auto 2vw auto 0;
}

#cred i { color: #ffffff; line-height: 24px; }

@media only screen and (max-device-width: 800px), all and (max-width: 800px) {
	#main { width: 100%; text-align: center; display: block; }
	#social { width: 100%; text-align: center; margin: 1vh auto 0 auto; font-size: 7px; display: block; }
	#social li a { text-decoration: none; }
	section { margin: 16vh auto 0 auto; }
}

@media only screen and (max-device-width: 420px), all and (max-width: 420px) {
	figure { max-width: 40vw; }
}