@import 'https://fonts.googleapis.com/css?family=Inconsolata';

* {
  box-sizing: border-box;
}

html,
body {
  background-color: #000;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background: #222;
  background: radial-gradient(#444, #111);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Inconsolata', Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-shadow:
    0 0 1ex rgba(17, 17, 17, 1),
    0 0 2px rgba(255, 255, 255, 0.8);
}

.overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
  background-size: auto 4px;
  z-index: 1;
}

.terminal {
  box-sizing: inherit;
  position: absolute;
  height: 100%;
  width: 1000px;
  max-width: 100%;
  padding: 70px;
  text-transform: uppercase;
}

.output {
  color: rgba(255, 255, 255, 0.8);
  text-shadow:
    0 0 1px rgba(204, 204, 204, 0.4),
    0 0 2px rgba(0, 0, 0, 0.8);
}

.output::before {
  content: "> ";
  color: rgba(4, 4, 4, 0.8);
  text-shadow:
    0 0 1px rgba(54, 54, 54, 0.6),
    0 0 2px rgba(255, 255, 255, 1);
}

a {
  color: #fff;
  text-decoration: none;
}

a::before {
  content: "[";
}

a::after {
  content: "]";
}

.invert {
  color: rgba(4, 4, 4, 0.8);
  text-shadow:
    0 0 1ex rgba(238, 238, 238, 1),
    0 0 2px rgba(0, 0, 0, 0.8);
}

.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}