* {
    color: rgb(180, 255, 68);
}

body {margin: 0;}

#screen {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 55, 0);
    overflow: hidden;
}

#scan, #bezel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#bezel {
    /* z-index: 2; */
}

#content-container {
    width: 90vw;
    height: 90vh;
    padding: 50px;
    padding-bottom: 100px;
    /* background-color: aqua; */
}

#content {
    font-family: 'VT323';
    font-size: 1.5rem;
    overflow-y: scroll;
    /* height: 100%; */
    max-height: 90vh;
    /* background-color: yellow; */
    
    /* Hide scroll bars for respective browsers */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
#content::-webkit-scrollbar {
    display: none;
}

#cmdHistory {
    position: relative;
    z-index: 1;
}

#cmdInput {
    margin-bottom: 100px;
    font-size: 1.5rem;
    font-family: 'VT323';
    border: none;
    background-color: transparent;
    caret-shape: block;
    width: calc(70% - 2rch);
}

.terminalText {text-decoration: none; list-style-type: none;}
.terminalCommand {}
.terminalOutput {margin-left: 25px;}
#cmdInputLI {
    position: relative;
    z-index: 1;
    list-style-type: none;
    font-size: 1.5rem;
}


  
  /* Hide scrollbar for IE, Edge and Firefox */
  .example {
  }

.tab {
    margin-left: 2rch;
}
.tab2 {
    margin-left: 4rch;
}

hr {
    border-color: rgb(180, 255, 68);;
}
input:focus{
    outline: none;
}