@charset "UTF-8";
/* CSS Document */

body {
	background-color:#000000;
	color:#10A300;
	font-family: 'VT323', ;
}

.mrrabbit {
	font-size:1.2em;
	font-family: 'VT323';	
}

.blinking-cursor {
  font-family:Courier New, Courier, monospace;
  font-weight: 100;
  font-size: 30px;
  color: #10A300;
  -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;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #10A300;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #10A300;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #10A300;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #10A300;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #10A300;
  }
}
