@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');

body {
  background-color: black;
  color: white;
  font-family: 'Inconsolata', monospace;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

a {
  color: white;
}

#output {
  height: 100%;
  overflow: auto;
}

.terminal-container {
  height: 50%;
  width: 50%;
}

.terminal {
  background-color: #333;
  color: white;
  height: 110%;
  width: 100%;
  padding: 15px;
  overflow-y: auto;
  border-radius: 10px;
  opacity: 0.8;
  margin-top: -5%;
  margin-left: auto;
  margin-right: auto;
}

.terminal-output p {
  margin: 0;
  padding: 7px 0;
}

.terminal-output a:hover:after {
  content: attr(title);
  position: absolute;
  left: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 1;
}


.terminal-input {
  display: flex;
  align-items: center;
  padding-top: 15px;
}

input[type="text"] {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  width: 120%;
  outline: none;
}


::-webkit-scrollbar-corner { background: rgba(0,0,0,0.5); }

    * {
        scrollbar-width: thin;
        scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
    }

    /* Works on Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    *::-webkit-scrollbar-track {
        background: var(--scroll-bar-bg-color);
    }

    *::-webkit-scrollbar-thumb {
        background-color: var(--scroll-bar-color);
        border-radius: 20px;
        border: 3px solid var(--scroll-bar-bg-color);
    }
