:root {
  --accent: ;
}

::selection {
  color: #1a1a1a;
  background-color: var(--accent);
}
::-moz-selection {
  color: #1a1a1a;
  background-color: var(--accent);
}

@font-face {
  font-family: "RobotoMono";
  src: url("RobotoMono-Bold.woff") format("woff");
}

body {
  margin: 50px;
  min-height: 99%;
  min-width: 550px;
  color: #fafafc;
  background: #1a1a1a;
  overflow-x: hidden;
  font-family: RobotoMono;
  font-weight: normal !important;
  overflow-wrap: break-word;
}

textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bolder;
  text-decoration: underline;
}

.cursor {
  font-size: 12px;
  color: #fafafc;
  background-color: #fafafc;
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 10px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#command {
  cursor: text;
  height: 50px;
  color: #fafafc;
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

#liner::before {
  color: #fafafc;
  background-image: linear-gradient(to right, #fafafc 50%, var(--accent) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  content: "~ / ";
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

p {
  display: block;
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.05em;
  animation: typing 1s steps(95, end);
}
.no-animation {
  animation: typing 0 steps(95 end);
}

.margin {
  margin-left: 20px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.color2 {
  color: var(--accent);
}
.command {
  color: var(--accent);
  text-shadow: 0 0 5px var(--accent);
}
.error {
  color: #f2777a !important;
}
.white {
  color: #fafafc;
}
.inherit,
a {
  color: #fafafc;
}
a {
  text-decoration: inherit;
}
a:hover {
  background: var(--accent);
  color: #211830;
}
a:focus {
  outline: 0;
}

.helper {
  color: #fafafc80;
}

.link {
  text-decoration: underline;
}
