body {
  margin: 0;
  padding: clamp(10px, 3vw, 20px);
  min-height: 99%;
  width: 100%;
  min-width: 0;
  color: #F5B027;
  background: #211D1B;
  font-family: 'Fixedsys Excelsior 3.01', sans-serif;
  font-size: clamp(12px, 2.8vw, 16px);
  overflow-x: hidden;
}
::selection {
  color: #211830;
  background-color: #F5B027;
}
::-moz-selection {
  color: #211830;
  background-color: #F5B027;
}
textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bold;
  text-decoration: underline;
}
/* Cursor Start */
.cursor {
  font-size: 12px;
  color: #F5B027;
  background-color: #F5B027;
  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;
  min-height: 44px;
  height: auto;
  color: #009300;
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
  word-break: break-word;
}
#liner::before {
  color: #F5B027;
  content: "client@znc.st:~$";
}
#liner.password::before {
  content: "Password:";
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Cursor End */
p {
  display: block;
  line-height: 1.1em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.05em;
  animation: typing 0.5s steps(30, end);
  word-break: break-word;
  max-width: 100%;
}
.no-animation {
  animation: typing 0 steps(30, end);
}
.margin {
  margin-left: 20px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index {
  color: #DCDCCC;
}
.color2 {
  color: #B89076;
}
.color3 {
  color: #DCDCCC;
}
.command {
  color: #F4A60B;
  text-shadow: 0 0 5px #F4A60B; 
}
.error {
  color: #B89076;
}
.white {
  color: #fff;
}
.inherit,
a {
  color: #81726b;
}
a {
  text-decoration: inherit;
  word-break: break-word;
  display: inline-block;
}
a:hover {
  background: #F5B027;
  color: #211830;
}
a:focus {
  outline: 0;
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  p {
    animation: none; /* typing effect looks bad when wrapping */
  }

  .margin {
    margin-left: 10px;
  }

  #liner::before {
    content: "client@znc.st:$";
  }
}
.link-icon {
  color: #ffffff;
  font-family: 'Fixedsys Excelsior 3.01', monospace;
  font-size: 0.5em;
  text-shadow: none;
}
.whois-link a:hover {
  background: #F5B027 !important;
  color: #211830 !important;
  text-shadow: none !important;
}
.ascii {
  font-size: 0.5em;
  line-height: 1.1em;
  display: block;
}
.vhost-table {
  margin: 12px 0 18px 0; /* top / sides / bottom spacing */
}
.vhost-table {
  border-collapse: collapse;
  margin: 12px 0 18px 0;
}

.vhost-table td {
  border: 1px solid #555; /* outline */
  padding: 4px 18px;
  color: #FFF;
  font-family: 'Fixedsys Excelsior 3.01', monospace;
}

