@import url(https://fonts.googleapis.com/css?family=Orbitron);
body {
  background-color: #000;
}

h1 {
  font-family: "Orbitron";
  animation: pulse 0.9s infinite;
  color: #00ebd4;
}

#identity-results, #resume, #loading-alpha-div, #loadingH1, #loadingMessage2, #message {
  margin-top: 20px;
  font-family: "Orbitron";
  font-weight: 900;
  font-size: 24px;
  color: #00ebd4;
  animation: pulse 0.9s infinite;
}

i {
  font-size: 24px;
  color: #00ebd4;
  animation: pulse 0.9s infinite;
}

.block {
  width: 50px;
  height: 50px;
  background-color: #000;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
.tabt:after {
  content: "_";
  opacity: 0;
  animation: tabt 1s infinite;
}

.sign:before {
  content: "> ";
}

@keyframes tabt {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loading-alpha-div, .img-div {
  display: none;
}

img {
  margin: 50px 0;
  animation: pulse 0.9s infinite;
}

#loadingMessage2 {
  display: none;
}

.sub-item {
  margin-top: 20px;
  margin-left: 40px;
}

.inline {
  display: inline;
  margin-left: 10px;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateY(100%); }
  to { -moz-transform: translateY(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateY(100%); }
  to { -webkit-transform: translateY(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}