/*
           88             
           ""             
                          
 ,adPPYba, 88 ,adPPYYba,  
a8"     "" 88 ""     `Y8  
8b         88 ,adPPPPP88  
"8a,   ,aa 88 88,    ,88  
 `"Ybbd8"' 88 `"8bbdP"Y8  Terminal de la CIA
 */

body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: #d0d0d0;
  background-color: #0a0a0a;
  background-image: none;
  /* background-size: 150%; */
}

.escudo {
  width: 150px;
}

a {
  color: #555;
}

h1 {
  text-align: center;
}

p {
  text-align: center;
}

.pantalla {
  background-color: #111;
  background-image: url(../images/cia-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  background-attachment: local;
  border: 1px solid #333;
  box-shadow: inset 0 0 0 1px #1a1a1a;
  margin-right: auto;
  height: 500px;
  border-radius: 0.5%;
  align-self: center;
  position: relative;
  overflow-y: scroll;
}

.pantalla::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.85);
  pointer-events: none;
  z-index: 0;
}

.pantalla > * {
  position: relative;
  z-index: 1;
}

.side {
  width: 10%;
}

label,
input {
  margin: 20px;
}

.texto1 {
  color: #d0d0d0;
  font-weight: 700;
  margin: 10px;
  margin-top: 10px;
}

.texto {
  color: #aaa;
  margin: 10px;
  margin-top: 10px;
}

.separador {
  height: 50px;
}

span {
  font-weight: normal;
}

/* EFECTO TYPEWRITTER */

.typewriter {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #444; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */

  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #444;
  }
}
