body {
  background: #141414;
}

.terminal {
  font-family: 'Ubuntu Mono', monospace;
  color: rgb(187,187,187);
  font-size: 16px;
  font-weight: 100;
}

.terminal-input {
  background: rgba(0, 0, 0, 0);
  font-family: monospace;
  color: transparent;
  font-size: 14px;
  outline: none;
  border: none;
  -webkit-text-fill-color: rgb(187,187,187);
}

.terminal-purple {
  color: #5050f2;
}

.console-line {
  color: rgb(0,178,0);
}

.login-line {
  color: #fff;
}

.console-carrot {
  vertical-align: middle;
  background: #00ff00;
  height: 15px;
  width: 8px;
  margin-left: -7px;
  display: inline-block;
  -webkit-animation: blink 1s step-start 0s infinite;
          animation: blink 1s step-start 0s infinite;
}

::-moz-selection {
  background-color: #fff;
  color: #000;
}

::selection {
  background-color: #fff;
  color: #000;
}

@-webkit-keyframes blink {
  50% {
    opacity: 0.0;
  }
}

@keyframes blink {
  50% {
    opacity: 0.0;
  }
}