body {
  color: #fff;

  font-family: Courier New, Courier, monospace;
  font-size: 13px;
  font-weight: bold;

  -webkit-font-smoothing: antialiased;
}

div.cursor {
  display: inline-block;
  background: #fff;
  margin-left: 1px;
	margin-top: -1px;
  -webkit-animation: blink 1.5s linear 0s infinite;
  -moz-animation: blink 1.5s linear 0s infinite;
  -ms-animation: blink 1.5s linear 0s infinite;
  -o-animation: blink 1.5s linear 0s infinite;
}
@-webkit-keyframes blink {
  0%   { background: #000 }
  47%  { background: #000 }
  50%  { background: #fff }
  97%  { background: #fff }
  100% { background: #000 }
}

@-moz-keyframes blink {
  0%   { background: #000 }
  47%  { background: #000 }
  50%  { background: #fff }
  97%  { background: #fff }
  100% { background: #000 }
}

@-ms-keyframes blink {
  0%   { background: #000 }
  47%  { background: #000 }
  50%  { background: #fff }
  97%  { background: #fff }
  100% { background: #000 }
}

@-o-keyframes blink {
  0%   { background: #000 }
  47%  { background: #000 }
  50%  { background: #fff }
  97%  { background: #fff }
  100% { background: #000 }
}
