body {
  background-color: black;
}

#terminal { 
  visibility: hidden;
  display: flex;
  flex-direction: column;
  background-color: black;
  color: #00ff00;
  font-family: monospace;
  padding: 20px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: scroll;
  height: 100%;
  width: 100%;
  font-size: 28px;
}

.loaded {
  visibility: none; /* Show the terminal when the page is fully loaded */
}

#loading {
  position: absolute;
  top: 10;
  left: 0;
  right: 0;
  text-align: center;
  color: #00ff00;
  font-family: monospace;
}

#bootName {
  color: #00ff00;
  text-align-last: center;
  font-family: "Perfect DOS VGA 437", monospace;
}

#bootOS {
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

#loading-bar {
  position: relative;
  top: 30px;
  left: 10px;
  right: 10px;
  height: 20px;
  background-color: #00ff00;
  animation: loading-bar 1s steps(20) infinite; /* Change animation to use steps */
  margin: 10px;
}

@keyframes loading-bar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

#loading-bar.hide {
  visibility: hidden;
}

#output {
  white-space: pre-wrap;
  flex: 1;
  overflow-y: scroll;
  min-height: 100%; /* Add a min-height to the output element */
}

#input-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  left: 0;
  right: 0;
  height: auto; /* Add a height to the input container element */
  align-items: center;
}

#input-container > span {
  font-weight: bold;
}

#input {
  border: none;
  background-color: black;
  color: #00ff00;
  font-family: monospace;
  outline: none;
  width: 100%;
  font-size: 28px;
}

.removed {
  color: #ff0000;
}

/*
  Perfect DOS VGA 437 font:
  https://portfolio.zehfernando.com/
*/

@font-face {
  font-family: "Perfect DOS VGA 437";
  src: url(https://manzdev.github.io/twitch-manzdev-bios/assets/perfect-dos-vga437.woff2) format("woff2");
}

.monitor {
  font-family: "Perfect DOS VGA 437", monospace;
  color: #888;
}

body {
  background: #000;
  font-size: 30px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  /*transform: scale(0.6) translateY(-25%);*/
}