/* secondary style */
/* :root {
  --title-color: #519975;
  --dark-color: #211830;
  --glow-commands-color: #73abad;
  --background-color: #211d1b;
  --text-color: #b89076;
} */

/* primary style */
:root {
  --title-color: #fff5f5;
  --dark-color: #211830;
  --glow-commands-color: #932edc;
  --background-color: #e5899f;
  --text-color: #3e3e3e;
}

body {
  margin: 0;
  min-height: 99%;
  width: 100%;
  min-width: 550px;
  background: var(--background-color);
  font-family: "sans-serif", monospace;
  overflow-x: hidden;
}

.wrapper {
  padding: 15px 20px;
}

::selection {
  color: var(--dark-color);
  background-color: var(--title-color);
}

::-moz-selection {
  background-color: var(--title-color);
}

textarea {
  left: -1000px;
  position: absolute;
}

b {
  font-weight: bold;
}

.cursor {
  font-size: 12px;
  margin-left: -7.5px;
  color: var(--text-color);
  background-color: var(--text-color);
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 5px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  animation: blinker 1s linear infinite;
}

#command,
#folder {
  cursor: text;
  height: 50px;
  color: var(--glow-commands-color);
}

#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
  color: var(--text-color);
}

#liner::before {
  color: var(--title-color);
  content: "grey@hamza.ro:~$";
}

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);
  font-size: 14px;
}

.no-animation {
  animation: typing 0 steps(30, end);
  color: var(--text-color);
}

.margin {
  margin-left: 20px;
}

.index {
  color: #dcdccc;
}

.color2,
.error {
  color: var(--text-color);
}

.white {
  color: #fff;
}

a {
  text-decoration: none;
  color: var(--glow-commands-color);
  transition: all 0.15s ease-in-out;
}

a:hover {
  text-shadow: 0 0 5px var(--glow-commands-color);
}

a:focus {
  outline: 0;
}

.white-glow {
  color: var(--text-color);
  text-shadow: 0 0 5px var(--text-color);
}

.green-glow {
  color: var(--glow-commands-color);
  text-shadow: 0 0 5px var(--glow-commands-color);
}

.command,
.folder {
  color: var(--glow-commands-color);
  text-shadow: 0 0 5px var(--glow-commands-color);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@media only screen and (max-width: 550px) {
  body {
    padding: 20px;
    min-width: unset;
  }

  #command,
  #folder {
    height: 100px;
  }

  #liner::before {
    content: "grey@hamza.ro:~$";
  }

  .cursor {
    width: 5px;
    max-width: 5px;
  }

  p {
    font-size: 14px;
  }
}
