@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

body {
  background-color: black;
  color: green;
  font-family: 'Ubuntu Mono', monospace;
  display: flex;
}

.typewriter p {
  border-right: .15em solid green; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  animation: 
    blink-caret .75s infinite;
}

.redacted {
  background-color: white;
  color: black;
}

.typewriter1 {
  border-right: .15em solid green; /* The typwriter cursor */
  animation: 
    blink-caret .75s infinite;
}

.typewriter2 {
}

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