@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap");

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

:root {
  --text-color: #00aa00;
}

body {
  font-family: "Roboto Mono", sans-serif;
  background-color: #333;
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

h1 {
  color: var(--text-color);
  font-size: 50px;
  letter-spacing: -5px;
  margin-bottom: 20px;
}

h2 {
  color: var(--text-color);
  width: fit-content;
}

h3 {
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

p {
  margin: 20px 0; /*top-bottom left-right*/
}

nav {
  width: 30%;
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media only screen and (max-width: 500px) {
  nav {
    width: 100%;
    margin: 10px auto;
  }
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: unset;
  }
  .container {
    justify-content: unset !important;
  }
  h1 {
    margin-top: 0;
    width: 90vw;
  }
  h1 > input {
    margin: auto 10px;
  }
  h3,
  ul {
    margin: 10px 10px;
  }
}

nav ul li {
  color: var(--text-color);
  cursor: pointer;
  margin: 10px;
}

.container {
  max-width: 600px;
  margin: auto;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wb-body {
  background: #111;
  padding: 20px;
}

/* Custom scrollbar for Webkit (Chrome, Edge, Safari) */
.wb-body::-webkit-scrollbar {
  width: 10px;
}

.wb-body::-webkit-scrollbar-track {
  background: #ffffff00; /* Track background */
}

.wb-body::-webkit-scrollbar-thumb {
  background-color: #00ff006b; /* Thumb color */
  border-radius: 8px;
  border: 2px solid #111; /* Matches terminal background */
}

.hidden {
  display: none;
}

.cursor {
  font-weight: 700;
  animation: 1s blink step-end infinite;
}

.hide {
  display: none;
}

#pic {
  font-size: 10px;
  line-height: 7.5px;
  letter-spacing: -2.7px;
  color: black;
}
@keyframes blink {
  from,
  to {
    color: transparent;
  }

  50% {
    color: var(--text-color);
  }
}
/*  */
#main-command-input {
  max-width: 90vw;
}
.command-input {
  font-family: "Roboto Mono", sans-serif;
  background: transparent;
  border: none;
  width: 1ch;
  color: #ccc;
  margin-right: 0px;
  padding: 0;
  outline: none;
  caret-color: green;
}

#ascii-image > pre {
  font-size: 2px !important;
  letter-spacing: 0.5px;
}

#ascii-image {
  position: fixed;
  bottom: -5px;
  border: 1px solid #333;
  border-radius: 50%;
  overflow: hidden;
}

.hide {
  display: none;
}

.highlight-command {
  color: var(--text-color);
}


.error-command-input {
  color: #ccc;
  caret-color: green;
  width: 25ch;
}

#error-content{
  color: "red";
}