.terminal {
	position: absolute;
	top: 168px;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
}

.blinking-cursor {
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
  display: inline-block;
  background-color: white;
  width: 0.6rem;
  height: 1rem;
}

@keyframes "blink" {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: white;
  }
}

@-moz-keyframes blink {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: white;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: white;
  }
}

@-ms-keyframes "blink" {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: white;
  }
}

@-o-keyframes "blink" {
  from, to {
    background-color: transparent;
  }
  50% {
    background-color: white;
  }
}