﻿body{
  color: #CCCCCC;
  background-color:#000;
  font-family:Consolas;
}

.centered{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
  
.blink_text{	
  animation-name:blink;
  width:10px;
  animation-duration:1s;
  animation-timing-function: steps(2, jump-none);
  animation-iteration-count:Infinite;
  }
  
@keyframes blink{
  0%{color:#CCCCCC;}
  100%{color:#000;}
  }