body {
  background-color: black;
  color: white;
  font-family: monospace;
}

#console {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow-y: scroll;
}

#console a {
  color: white;  /* Color del enlace */
  text-decoration: none; /* Sin subrayado */
}

#console a:visited {
  color: white;  /* Color del enlace visitado */
}

#console a:hover {
  text-decoration: underline; /* Subrayado al pasar el mouse */
}

.typewriter {
  overflow: hidden;
  border-right: .15em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

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

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

.centered-output {
  display: flex;
  justify-content: normal;
  align-items: center;
  width: 70%;
  height: 70%;
  position: fixed;
  top: 20%;
  left: 20%;
  background-color: #2a2a2a;
  border: 2px solid white;
  box-sizing: border-box;
  z-index: 9999;
}

.popup-content {
  color: #66FF00;
  font-family: monospace;
  font-size: 20px;
  text-align: left;
  padding: 10px;
  width: 95%;
  height: 95%;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  cursor: pointer;
}
