@-webkit-keyframes BLINK-CURSOR {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}

@keyframes BLINK-CURSOR {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes GRADIENT {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes GRADIENT {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

html {
  font-size: 16px;
  overflow: hidden;
  background-color: #120e14;
}

html.lava {
  background: -webkit-gradient(linear, right top, left top, from(#ff5d00), color-stop(red), to(#ff0050));
  background: linear-gradient(270deg, #ff5d00, red, #ff0050);
  -webkit-animation: GRADIENT 4s ease infinite;
          animation: GRADIENT 4s ease infinite;
  background-color: #ff0000;
  background-size: 600% 600%;
}

html.lava .main-page__command-line-input::after {
  background-color: #00ffff;
}

html.lava .main-page__command-line-response--suggestion {
  color: #00ffff;
}

html.lava .main-page__command-line-input,
html.lava .main-page__command-line-response {
  color: white;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Fira Mono", monospace;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-page {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.main-page__command-line {
  margin-left: 0.5rem;
  position: relative;
  margin-top: 1rem;
}

.main-page__command-line-input {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #b9b4a9;
  background: none;
  border: none;
}

.main-page__command-line-input:focus {
  outline: none;
}

.main-page__command-line-input::before {
  content: '$';
}

.main-page__command-line-input::after {
  content: '';
  height: 100%;
  width: 0.5rem;
  background-color: #00aa00;
  -webkit-animation: BLINK-CURSOR 1.25s infinite;
          animation: BLINK-CURSOR 1.25s infinite;
  position: absolute;
  right: -0.5rem;
  top: 0;
}

.main-page__command-line-response {
  max-width: calc(100vw - 1rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #b9b4a9;
}

.main-page__command-line-response--suggestion {
  color: #00aa00;
}

.main-page__dummy-input {
  width: 0;
  height: 0;
  opacity: 0;
  bottom: 1rem;
  position: absolute;
}

.pulsar-container {
  width: 100vw;
}

.pulsar-container svg {
  position: absolute;
}
/*# sourceMappingURL=index.css.map */