body {
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@font-face {
  font-family: "Karma Future";
  src: url("./karma.future-regular.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
h1 {
  font-size: 3rem;
  text-align: center;
  font-family: "Karma Future", monospace;
  margin-bottom: 0;
}
.description {
  margin-bottom: 0;
  text-align: center;
}
.terminal {
  background-color: #000;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  height: 80vh;
  overflow-y: auto;
  border: 2px solid #0f0;
  box-shadow: 0 0 10px #0f0;
}

.output {
  white-space: pre-wrap;
  margin-bottom: 10px;
}

#terminal-form {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 8px;
}

#terminal-input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  color: #0f0;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  width:100%;
}
#terminal-input::selection {
  background: #ffffff;
  color: #000000;
}
.blinking-cursor::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1em;
  background-color: #00ff88;
  margin-left: 2px;
  animation: blink 0.4s steps(1) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Output */
.output p {
  margin-bottom: 0.2rem;
  color: #fff;
}
.output p:not(.page-header)::before {
  content: "bash: ";
  font-weight: bold;
}

.output p {
  margin-top: 0;
  margin-bottom: 3px;
}
.output div {
  margin: 6px;
}

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

.popup-content {
  background-color: #111;
  border: 1px solid #00ffcc;
  border-radius: 10px;
  padding: 40px 20px;
  padding-top: 30px;
  text-align: center;
  box-shadow: 0 0 20px #00ffcc80;
  width: clamp(300px, 80%, 600px);
}

.countdown-number {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: "Courier New", Courier, monospace;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
  margin-bottom: 20px;
}

.popup-footer {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  font-family: "Courier New", Courier, monospace;
}

.hidden {
  display: none;
}
/* styling the about page for the about section */
.page-header {
  text-align: center;
  padding: 3px;
  font-size: 32px;
  font-family: "Libre Baskerville";
  font-weight: 700;
  font-style: normal;
  background :#121212;

}
