@font-face {
  font-family: "RedHatMono";
  src: url("../fonts/RedHatMono.ttf") format("ttf");
}

body {
  margin: 0;
  padding: 0;
  display: block;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(0, 0, 0); /* Adjust transparency here */
  font-family: "RedHatMono", monospace;
}

/* #container {
  position: fixed;
  touch-action: none;
} */

#container {
  position: relative;
}

.transparent-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.terminal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48em;
  height: 90%;
  background-color: rgba(00, 0, 0, 0.5);
  border-radius: 10px;
  text-align: left;
  padding: 20px;
  font-size: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  color: rgb(215, 195, 138);
  overflow-x: hidden;
  overflow-y: auto;
}
.terminal-base {
  width: 100%;
  height: 5em;
}

.transparent-box img {
  max-width: 100%;
  max-height: 100%;
}

.rounded-input {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  outline: none;
  border: 2px solid rgba(27, 14, 114, 0.4); /* Adjust color and transparency here */
  background-color: rgba(255, 255, 255, 0.2); /* Adjust transparency here */
  color: rgb(4, 4, 24); /* Adjust transparency here */
}

.spinner {
  display: none;
  margin-top: 10px;
  font-size: 24px;
}
.swamp {
  background: rgba(0, 0, 0, 0);
  cursor: url("../images/cursor.png"), auto;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
}

.error-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 666px;
  height: 144px;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
}

.scrolling-text-container {
  height: 100vh; /* Full viewport height */
  width: 400px;
  overflow: auto; /* Hide content that overflows the container */
}

/* .progressbar {
  margin: 3px;
  width: 100%;
  height: 8px;
  position: relative;
  padding-top: 20px;
}
.progressbar label {
  position: absolute;
  top: 0;
  left: 0;
} */

.progress {
  position: relative;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: rgba(0, 0, 0, 0);
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: rgb(215, 195, 138);
}

.codeline {
  /* display: block; */
  width: 100%;
  /* margin-top: 5px; */
  box-sizing: border-box;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  margin-bottom: 2px;
}
