@font-face {
    font-family: 'Inconsolata';
    src: url('/assets/fonts/Inconsolatazi4-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }


@media (max-width: 600px) {
  .terminal {
    width: 90%;
    margin: 0 auto;
    padding: 2rem !important;
    padding-top: 2rem !important;
    padding-bottom: 4rem !important;
  }
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  box-sizing: border-box;
  height: 100%;
  background-color: #000000;
  background-image: radial-gradient(circle at center, #141d3a, #052329), url("/assets/img/static.gif");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  font-family: 'Inconsolata', Helvetica, sans-serif;
  font-size: 1.5rem;
  color: rgba(128, 141, 255, 0.8);
  text-shadow:
      0 0 1ex rgb(51, 173, 255),
      0 0 2px rgba(255, 255, 255, 0.8);
}

.noise {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/static.gif");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: .02;
}

.overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background:
      repeating-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
  background-size: auto 4px;
  z-index: 1;
}

.terminal {
  box-sizing: inherit;
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 4rem;
  /* padding-right: 10rem; */
  text-transform: uppercase;
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.terminal::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.output {
  color: rgba(128, 130, 255, 0.8);
  margin-bottom: 0rem; /* Adjust the margin to reduce spacing */
}

.output::before {
  content: "> ";
}

a {
  color: #fff;
  text-decoration: none;
}

a::before {
  content: "[";
}

a::after {
  content: "]";
}

a:hover {
  color: gray;
}

.headtitle {
  color: rgb(62, 253, 180);
}

.accessgranted {
  color: rgb(43, 230, 5);
}

.warningcode {
    color: rgb(253, 202, 62);
  }

.errorcode {
  color: rgb(253, 84, 62);
}

.cursor {
  color: rgba(128, 130, 255, 0.8);
  display: inline-block;
}

.blink {
  animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.backgroundswitch {
  cursor: pointer;
}

.form-check-input {
  background-color: rgba(128, 130, 255, 0.8);
}

.form-check-input:checked {
  background-color: rgba(51, 156, 255, 0.4);
}

.autoscroll {
  cursor: pointer; 
  text-align: right; 
  font-size: 0.8rem; 
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@keyframes fadeInFromBlack {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInFromBlack 2s ease-in-out;
}

@keyframes flicker {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

#backgroundSwitch {
  animation: flicker 0.06s infinite;
}
