body {
  margin: 0;
  padding: 15px 20px;
  min-height: 99%;
  width: 100%;
  min-width: 550px;
  color: #13b913;
  background: #0e0c0b;
  font-family: 'Courier New', monospace;
  overflow-x: hidden;
}

::selection {
  color: #0e0c0b;
  background-color: #13b913;
}

::-moz-selection {
  color: #0e0c0b;
  background-color: #13b913;
}

textarea {
  position: absolute;
  left: -1000px;
  width: 1px;
  height: 1px;
  opacity: 0.01;
}

b {
  font-weight: bold;
  text-decoration: underline;
}

/* Cursor Start */
.cursor {
  font-size: 12px;
  color: #13b913;
  background-color: #13b913;
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 10px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

#command {
  cursor: text;
  height: 50px;
  color: #36bdc2;
}

#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

#liner::before {
  color: #13b913;
  content: "visitor@kiam.sh:~$";
}

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

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* Cursor End */

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

.no-animation {
  animation: typing 0 steps(30, end);
}

.margin {
  margin-left: 20px;
}

.index {
  color: #DCDCCC;
}

.logo-box {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 154, 0, 1) 10%,
    rgba(208, 222, 33, 1) 20%,
    rgba(79, 220, 74, 1) 30%,
    rgba(63, 218, 216, 1) 40%,
    rgba(47, 201, 226, 1) 50%,
    rgba(28, 127, 238, 1) 60%,
    rgba(95, 21, 242, 1) 70%,
    rgba(186, 12, 248, 1) 80%,
    rgba(251, 7, 217, 1) 90%,
    rgba(255, 0, 0, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 1s linear infinite;
  font-weight: bold;
}

@keyframes animate-gradient{
  to{
    background-position: 200%;
  }
}

.color2 {
  color: #B89076;
}

.command {
  color: #36bdc2;
  text-shadow: 0 0 5px #36bdc2;
}

.error {
  color: #d42323;
}

.white {
  color: #fff;
}

.inherit,
a {
  color: #d42323;
}

a {
  text-decoration: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a:hover {
  background: #519975;
  color: #211830;
}

a:focus {
  outline: 0;
}
