@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,600);
html, body{
    background-color: #14171C;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #249140;
    font-size: 30px;
}
article {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
#logo {
    width: 800px;
    text-align: center;
}

/* https://codepen.io/ArtemGordinsky/pen/GnLBq */

.blinking-cursor {
  font-weight: 100;
  font-size: 30px;
  color: #249140;
  -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: #249140;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #249140;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #249140;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #249140;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #249140;
  }
}