html,
body {
  font-family: "Montserrat", sans-serif !important;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000, #000);
  color: #fff;
}
h1,
h2,
p {
  margin: 0;
  padding: 0;
}
#log {
  white-space: pre-wrap;
  background: #000;
  color: #10ff10;
  font-family: monospace;
  padding: 10px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  height: calc(100vh - 110px);
}
#commandInput {
  width: 80%;
  padding: 5px;
}
.wrapper {
  padding: 10px;
}

/* BTNS */
button {
  --border-radius: 15px;
  --border-width: 4px;
  appearance: none;
  position: relative;
  padding: 1em 2em;
  border: 0;
  background-color: #000000;
  font-family: "Roboto", Arial, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  z-index: 2;
}

button::after {
  --m-i: linear-gradient(#000, #000);
  --m-o: content-box, padding-box;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: var(--border-width);
  border-radius: var(--border-radius);
  background-image: conic-gradient(
    #488cfb,
    #29dbbc,
    #ddf505,
    #ff9f0e,
    #e440bb,
    #655adc,
    #488cfb
  );
  -webkit-mask-image: var(--m-i), var(--m-i);
  mask-image: var(--m-i), var(--m-i);
  -webkit-mask-origin: var(--m-o);
  mask-origin: var(--m-o);
  -webkit-mask-clip: var(--m-o);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  filter: hue-rotate(0);
  animation: rotate-hue linear 500ms infinite;
  animation-play-state: paused;
}
.running:after {
  animation-play-state: running;
}
button:hover::after {
  animation-play-state: running;
}

@keyframes rotate-hue {
  to {
    filter: hue-rotate(1turn);
  }
}

button,
button::after {
  box-sizing: border-box;
}

button:active {
  --border-width: 5px;
}
