@import url('https://fonts.googleapis.com/css2?family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SUSE Mono", sans-serif;
  scroll-behavior: smooth;


}

body {
  background-color: black;
  color: white;
  user-select: none;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: #00ff00;
  border-radius: 4px;
}


.caret {
  position: absolute;
  width: 5px;
  height: 1.1em;
  background: #00ff00;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

input {
  caret-color: transparent;
  /* cache le caret natif */
  font-size: 16px;
  background: black;
  color: #00ff00;
  border: none;
  outline: none;
  width: 300px;
}

.inp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 5vw;
}

.inpcmd {
  position: relative;
}

a {
  color: #ffffff;
}