* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: 'Shadows Into Light', cursive;
}

.container {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
}

.type {
    color: #fff;
    font-weight: bold;
    font-size: 64px;

    /* for firefox */
    display: inline-block;
    min-width: 20px;
}

.type.ng {
    color: #ff2789;
}

.type.ok {
    color: #2789ff;
    -webkit-animation: pyon 1s;
    animation: pyon 1s;
}

@-webkit-keyframes pyon {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
  50% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
  }
  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}

@keyframes pyon {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-30px);
  }
  100% {
      transform: translateY(0);
  }
}

.timer {
    color: #fff;
    font-size: 64px;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 20%;
}
