/*
===============================================================================================
Color codes for easy replacement; just find these and replace with your preferred color scheme:

MAIN:
background: #000000 (black)
text: #ffffff (white)

gray border: #1a1a1a
light gray text: #999999 (social and extra links)

yellow: #ffc128
pink: #ff4271
blue: #50a9ff
blue-green: #42ffbe

===============================================================================================
*/

* {
	margin: 0;
	padding: 0;
}

::-webkit-scrollbar { background-color: #ffffff; height: 9px; width: 9px; border: 4px solid #000000; }
::-webkit-scrollbar-thumb { background-color:#ffffff; height: 8px; border: 3px solid #000000; }

body {
	background-color: #000000;
	font-family: 'Roboto Mono', monospace;
	font-size: 7px;
	color: #ffffff;
	line-height: 18px;
	overflow-x: hidden;
}

article {
	width: 100vw;
	background-color: transparent;
	margin: 0 auto;
	padding: 0 0 1vw 0;
	text-align: center;
	display: block;
	position: relative;
	z-index: 99;
}

header {
	margin: 25px auto;
	padding: 0 1vw;
	width: 98vw;
	background-color: transparent;
	line-height: 100%;
	position: relative;
	display: block;
	text-align: center;
	z-index: 30;
}

h1 {
	margin: 0 auto;	padding: 0;
	background-color: transparent;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 27pt;
	font-weight: 800;
	font-style: italic;
	line-height: 100%;
	text-transform: uppercase;
	display: block;
	position: relative;
	z-index: 30;
}

h1 span {
	margin: 0 0 0 5px;
	color: #ffc128;
}

#social, #extra {
	margin: 10px auto 0 auto; padding: 10px;
	color: #999999;
	font-family: 'Roboto Mono', monospace;
	font-size: 7pt; font-weight: 400;
	font-style: italic;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	display: table; vertical-align: middle;
	border: 1px solid #1a1a1a;
	position: relative;
	z-index: 30;
}

#social li, #extra li { 
	background-color: transparent;
	color: #999999;
	margin: 0; padding: 0;
	letter-spacing: 0.05em;
	display: inline-block;
}

#social li::after, #extra li::after {
	content: '';
	margin: 5px 10px 0 10px;
	background-color: #1a1a1a;
	width: 5px; height: 1px;
	position: relative; float: right;
	display: inline-block;
	z-index: 25;
}

#social li:last-child::after, #extra li:last-child::after { display: none; }

#social li a, #extra li a {
	color: #999999;
	text-decoration: none;
	display: inline-block;
}

#social li a:hover, #extra li a:hover {
	color: #ffffff;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
}

/* MAIN SECTION */

section {
	margin: 2vw auto;
	display: block;
	text-align: center;
}

section li {
	padding: 12px 6px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

figure {
	width: 200px;
	height: 250px;
	margin: 0; padding: 2px;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #1a1a1a;
	display: inline-block;
	position: relative;
	z-index: 20;
}

figure::before {
	content: '';
	background: #000000;
	background: -webkit-linear-gradient(270deg, rgba(0,0,0,0.001) 25%, #000000 100%, rgba(0,0,0,0.001) 100%);
	background: -o-linear-gradient(270deg, rgba(0,0,0,0.001) 25%, #000000 100%, rgba(0,0,0,0.001) 100%);
	background: -moz-linear-gradient(270deg, rgba(0,0,0,0.001) 25%, #000000 100%, rgba(0,0,0,0.001) 100%);
	background: linear-gradient(270deg, rgba(0,0,0,0.001) 25%, #000000 100%, rgba(0,0,0,0.001) 100%);
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: table-cell;
	z-index: 20;
	opacity: 0;
	mix-blend-mode: multiply;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
}

figure:hover::before { opacity: 0.85; }

.site {
	width: 100%; height: 100%;
	line-height: 14pt;
	text-transform: uppercase;
	position: relative;
	z-index: 30;
}

.site h2 {
	width: 120%;
	position: absolute;
	bottom: 0; left: -24px;
	right: 0; top: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 14pt; font-weight: 200;
	font-style: italic;
	text-align: center;
	letter-spacing: 0.05em;
	display: block;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transform-origin: center;
	-webkit-transition: left 0.6s ease-in-out;
	-moz-transition: left 0.6s ease-in-out;
	-o-transition: left 0.6s ease-in-out;
}

.site h2 span {
	margin: 0 0 0 5px;
	color: #ff4271;
	font-weight: 800;
}

section li:nth-child(2n+1) .site h2 span { color: #42ffbe; }
section li:nth-child(4n) .site h2 span{ color: #50a9ff; }
section li:nth-child(4n+1) .site h2 span { color: #ffc128; }

figure:hover .site h2 {
	left: -4px;
}

.info {
	position: absolute;
	left: 0; bottom: -30px; right: 0;
	font-family: 'Roboto Mono', monospace;
	font-size: 7px; font-weight: 400;
	font-style: italic;
	line-height: 100%;
	text-align: right;
	display: block;
	margin: auto;
	-webkit-transition: bottom 0.6s ease-in-out;
	-moz-transition: bottom 0.6s ease-in-out;
	-o-transition: bottom 0.6s ease-in-out;
}

figure:hover .info {
	bottom: -14px;
}

.info hr {
	width: 100%; height: 1px;
	position: absolute;
	top: 0; bottom: 0; left: 0;
	background-color: #ffffff;
	opacity: 0.4;
	margin: auto; border: none;
	display: block; z-index: 20;
}

.info h5 {
	background-color: #000000;
	padding: 0 0 0 10px;
	font-size: inherit;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.25em;
	display: inline-block;
	position: relative;
	z-index: 30;
}

section li:hover figure::after {
	opacity: 0.85;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
}

footer {
	margin: 1vw auto;
	padding: 1vw 0;
	width: 94vw;
	background-color: transparent;
	line-height: 100%;
	position: relative;
	display: table;
	vertical-align: middle;
	border-top: 1px solid #1a1a1a;
	z-index: 30;
}

footer span {
	margin: 0; width: 94%;
	background-color: transparent;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 7pt;
	font-weight: 400;
	font-style: italic;
	line-height: 100%;
	display: table-cell;
	padding: 1vw;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 30;
}

footer span i { margin: 0 5px 0 0; color: #ffc128; display: inline-block; }

footer li {
	display: inline-block;
	line-height: 150%;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
}

footer li::after {
	content: '-';
	font-size: 100%;
	color: inherit;
	position: relative;
	margin: 0 0.5vw;
	display: inline-block;
}

footer a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

footer li:last-child::after { display: none; }
footer li:hover { color: #ffc128; }

#cred {
	text-align: right;
	display: table-cell;
	vertical-align: middle;
}

#cred a svg {
	width: 24px; height: 24px;
	display: inline-block;
}

@media only screen and (max-device-width: 800px), all and (max-width: 800px) {
	figure .site h2 { left: -4px; }
	figure .info { bottom: -14px; }
	figure::before { opacity: 0.85; }
	footer, footer span { display: block; }
	footer span { margin: 0 auto; padding: 1vw 0; width: auto; background-color: #1a1a1a; text-align: center; }
	#cred { position: relative; margin: 1vw auto 0 auto; text-align: center; display: block; }
}

@media only screen and (max-device-width: 420px), all and (max-width: 420px) {
	h1 {font-size: 12pt; }
}