body {
  background-color:#222;
}
.blink_me {
  animation: blinker 1s linear infinite;
  font-size:0.9em;
  text-align:left;
  color:#9e9e9e;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.console-text{
    font-family: "OCR A Extended", Consolas;
    font-size:0.8em;
    color:#9e9e9e;
}
#console {
    box-shadow: 0px 10px 20px #131212;
    position:fixed;
    top: 40%;
    left: 50%;
    width:35em;
    height:20em;
    margin-top: -10em; /*set to a negative number 1/2 of your height*/
    margin-left: -17em; /*set to a negative number 1/2 of your width*/
    border: 1px solid #ccc;
    background-color: #0f000f;
    text-align:left;
    padding-left:35px;
    border-top-width: 20px;
    border-left-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
}
input[type="text"]
{
    background: transparent;
    border: none;
}
a {
text-decoration: none;
}
/* unvisited link */
a:link {
    color: #9e9e9e;
}

/* visited link */
a:visited {
    color: #9e9e9e;
}

/* mouse over link */
a:hover {
    color: white;
}

/* selected link */
a:active {
    color: #9e9e9e;
}