@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 400;
  src: local("Source Code Pro"), local("SourceCodePro-Regular"),
    url(http://themes.googleusercontent.com/static/fonts/sourcecodepro/v4/mrl8jkM18OlOQN8JLgasDxM0YzuT7MdOe03otPbuUS0.woff)
      format("woff");
}

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

body {
  font-family: "Source Code Pro", monospace;
  background: #111;
  color: #ff0000;
  overflow: hidden;
}

.canvas-container {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
}

canvas {
  position: absolute;
  border: 2px solid #ff0000;
  /* width: 100%;
  height: 65%; */
}

.bars-and-stuff {
  width: 33%;
}

.output-console {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 40%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #00ff0d;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 0 0 5px #48ff00e3;
}

.output-console p {
  margin: 5px 0;
}

.output-console span {
  display: inline-block;
  color: #00ff37;
  font-size: 16px;
  animation: typing 2s steps(40) 1s 1 normal both;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.popup-content {
  background: #222;
  padding: 20px;
  border: 2px solid #ff0000;
  color: #ff0000;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
}

.danger-text {
  font-size: 30px;
  color: #ff0000;
  text-shadow: 0 0 10px #ff0000;
}

.progress-bar {
  margin-top: 10px;
  width: 100%;
  height: 20px;
  background-color: #444;
}

.progress {
  width: 0;
  height: 100%;
  background-color: #ff0000;
  animation: progressAnimation 10s infinite;
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
