/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ FONT DEFINITION CHECK █ Check all defined fonts within GRID LEVEL. █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/
@font-face { /* Microsoft DOS - Font of SUPERHOT */
    font-family: "MS DOS";
    src: url("../PxPlus_IBM_VGA8.html");
}

@font-face { /* Commodore 64 - Font of Retrogrydon */
    font-family: "C64";
    src: url("../C64_Pro_Mono-STYLE.ttf");
}

body { /* Body Definition Matrix */
    background-color: black;
    font-family: "C64";
    font-size: 16px;
    color: #FFFFFF;
}

/* COLOR MATRIX */
span.red { color: #FF0000; } /* RED */
span.darkred { color: #800000; }
span.yellow { color: #FFFF00; } /* YELLOW */
span.darkyellow { color: #808000; }
span.green { color: #00FF00; } /* GREEN */
span.darkgreen { color: #008000; }
span.cyan { color: #0000FF; } /* CYAN */
span.darkcyan { color: #000080; }
span.blue { color: #0000FF; } /* BLUE */
span.darkblue { color: #000080; }
span.purple { color: #FF00FF; } /* PURPLE */
span.darkpurple { color: #800080; } /* PURPLE */
/* WHITE */
span.white { color: #FFFFFF; }
span.grey { color: #C0C0C0; }
span.darkgrey { color: #808080; }

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ Terminal Stylization █ Content Section of the Terminal. █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/
#main {
    background-color: rgba(0, 0, 0, .5);
    border-style: double;
    border-color: #FFFFFF;
    text-align: center;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ LINK MATRIX █ Begin Link Style Section █ // Cause I'm not very fond of the Default Link Design browsers come with!
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ TERMSTATE █ DESCRIPTION OF TERMINAL STATUS      █ // Hmm, do I really *have* to explain this?
█▄▄▄▄▄▄▄▄▄▄▄█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ // Maybe users of The Matrix *do* understand this well. But eh!
█ A         █ TERMINAL CONNECTION IDLE STATE      █ // I'mma just drop this down here for documentation purposes.
█ A:HOVER   █ USER STANDING ON TERMINAL CONNECTOR █
█ A:ACTIVE  █ TERMINAL CONNECTION IS ALIVE        █
█ A:VISITED █ USER HAS ALREADY EXPLORED THIS AREA █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/

/* ---=== IN A FEATURE UPDATE, DEFINE COLORVAR MATRIX AT TOP OF CSS LATER FOR EASY CONFIGURATION. ===--- */
a {
  color: #808080;
  text-decoration: none;
}

a:hover {
 color: #FFFFFF;
 animation: glowtext 1s infinite;
}

a:active {
  animation: glowtext 0.05s infinite;
  animation-timing-function: ease-in-out;
}

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ ANIMATION █ TERMINAL/LINK GLOW █ // Make the Terminals a bit alivelike.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/

@keyframes glowtext {
  0% { color: #808080; }
  50% { color: #FFFFFF; }
  100% { color: #808080; }
}

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ ANIMATION █ OPEN/CLOSE █ // For seamless transition inbetween Terminals!
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/

.open {
  animation: terminal_open 1s;
  animation-timing-function: ease-in-out;
}

.close {
  animation: terminal_close 1s;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

@keyframes terminal_open {
  0% { height: 0px; padding-top: 10px; padding-bottom: 0px; width: 0px; border-color: inherit; color: #000000; }
  50% { height: auto; padding-top: 10px; padding-bottom: 10px; width: 800px; border-color: #FFFFFF; color: #000000; }
  75% { width: 800px; border-color: #FFFFFF; color: #FFFFFF; }
  100% { width: 800px; color: inherit; }
}

@keyframes terminal_close {
  0% { opacity: 100; width: 800px; color: inherit; }
  100% { opacity: 0; height: 0px; padding-top: 0px; padding-bottom: 0px; width: 0px; border-color: inherit; color: #000000; }
}

/*
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ ANIMATION █ LOADER █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
*/
  .no-js #loader {
    display: none;
  }

  .js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
  }

  .se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
  }








  /*
  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  █ SCANLINE EFFECT █ GET DAT NOSTALGIA FLOWIN' █
  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  */
  body:before {
  	content: "";
  	position: fixed;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
  	z-index: 1000;
  	background-image: url(../scanlines.png);
  	background-repeat: all;
  	background-position: 0px 0px;
  	animation-name: Static;
  	animation-duration: 2s;
  	animation-iteration-count: infinite;
  	animation-timing-function: steps(4);
  	box-shadow: inset 0px 0px 10em rgba(0,0,0,0.4);
  }

  body:after {
  	content: "";
  	position: fixed;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
  	z-index: 1000;
  	background-image: url(../scanlines.png);
  	background-repeat: all;
  	background-position: 0px 0px;
  	animation-name: Static;
  	animation-duration: 0.8s;
  	animation-iteration-count: infinite;
  	animation-timing-function: steps(30);
  }

  @keyframes Static {
  	0% { background-position: 0px 0px; }
  	100% { background-position: 0px 30px; }
  }
