/* Cursor Start */
.cursor {
  font-size: 15px;
  color: #b67fc4;
  background-color: #b67fc4;
  position: relative;
  opacity: 1;
  height: 1em;
  width: 8px;
  max-width: 8px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1s linear infinite;
}
::selection {
  color: #211830;
  background-color: #90fff9;
}
::-moz-selection {
  color: #211830;
  background-color: #90fff9;
}
textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bold;
  text-decoration: underline;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
#liner::before {
  color: #90fff9;
  content: "visitor@terminal.tylerpettitt.me:~$";
}
#liner.password::before {
  content: "Password:";
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Cursor End */
p {
  display: block;
  line-height: 1.5em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.05em;
  animation: typing 0.5s steps(30, end);
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index {
  color: #DCDCCC;
}
.command {
  color: #b67fc4;
  text-shadow: 0 0 5px #b67fc4; 
}
.white {
  color: #fff;
}
.inherit,
a {
  color: #c065a3;
}
a {
  text-decoration: inherit;
}
a:hover {
  background: #b67fc4;
  color: #211830;
}
a:focus {
  outline: 0;
}
 
 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  body {
    margin: 0;
    padding: 6px 5px;
    min-height: 99%;
    width: 100vw;
    min-width: 550px;
    color: #90fff9;
    background: #211D1B;
    font-family: cursor, monospace;
    overflow-x: hidden;
  }
  #command {
    cursor: text;
    height: 50px;
    color: #b67fc4;
    font-size: 7px;
  }
  .no-animation {
    animation: typing 0 steps(30, end);
    font-size: 6px;
  }
  .color2 {
    color: #93d0b1;
    font-size: 7px;
  }
  .error {
    color: #d55d87;
    font-size: 7px;
  }
  .margin {
    margin-left: 6px;
  }
  .banner {
    font-size: 6px;
  }
  .banner-text {
    font-size: 7px;
    line-height: 1.5em;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  body {
    margin: 0;
    padding: 10px 8px;
    min-height: 99%;
    width: 100vw;
    min-width: 550px;
    color: #90fff9;
    background: #211D1B;
    font-family: cursor, monospace;
    overflow-x: hidden;
  }
  #command {
    cursor: text;
    height: 50px;
    color: #b67fc4;
    font-size: 10px;
  }
  .no-animation {
    animation: typing 0 steps(30, end);
    font-size: 10px;
  }
  .color2 {
    color: #93d0b1;
    font-size: 10px;
  }
  .error {
    color: #d55d87;
    font-size: 10px;
  }
  .margin {
    margin-left: 10px;
  }
  .banner {
    font-size: 6px;
  }
  .banner-text {
    font-size: 10px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  body {
    margin: 0;
    padding: 12px 8px;
    min-height: 99%;
    width: 100vw;
    min-width: 550px;
    color: #90fff9;
    background: #211D1B;
    font-family: cursor, monospace;
    overflow-x: hidden;
  }
  #command {
    cursor: text;
    height: 50px;
    color: #b67fc4;
    font-size: 12px;
  }
  .no-animation {
    animation: typing 0 steps(30, end);
    font-size: 12px;
  }
  .color2 {
    color: #93d0b1;
    font-size: 12px;
  }
  .error {
    color: #d55d87;
    font-size: 12px;
  }
  .margin {
    margin-left: 12px;
  }
  .banner {
    font-size: 8px;
  }
  .banner-text {
    font-size: 12px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  body {
    margin: 0;
    padding: 20px 14px;
    min-height: 99%;
    width: 100vw;
    min-width: 550px;
    color: #90fff9;
    background: #211D1B;
    font-family: cursor, monospace;
    overflow-x: hidden;
  }
  #command {
    cursor: text;
    height: 50px;
    color: #b67fc4;
    font-size: 14px;
  }
  .no-animation {
    animation: typing 0 steps(30, end);
    font-size: 14px;
  }
  .color2 {
    color: #93d0b1;
    font-size: 14px;
  }
  .error {
    color: #d55d87;
    font-size: 14px;
  }
  .margin {
    margin-left: 20px;
  }
  .banner {
    font-size: 10px;
  }
  .banner-text {
    font-size: 14px;
  }
}