body {
    background-color: black;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
 
 
  }

  kbd {
    font-size: 1.9em;
    border-radius: 3px;
    padding: 1px 2px 0;
    border: 1px solid white;
    background: black;
    margin:auto;
  }
  
  .title {
    color: white;
    text-transform: uppercase;
    margin-top: 1em;
    margin-bottom: 3em;
    font-size: 1em;
    letter-spacing: 0.3em;
  }
  
  .keyboard {
    display: flex;
    flex-direction: column;
    min-height: 2em;
    display: table-cell;
    vertical-align: middle;
    font-size: 1.5rem;
    
  }
  
  .row {
    list-style: none;
    display: flex;
    height: 2rem;
  }

  


  
  li {
    /* margin: 0 15rem; */
    height: 4em;
    width: 4.5em;
    color: white;
    border-radius: 0.1em;
    letter-spacing: .3px;
    margin: 0.1em;
    padding:.5rem;
    text-align: center;
    font-size: .3em;
    border: solid white 1px ;
}
  
  #tab {
    width: 6em;
  }
  
  #caps {
    width: 7.3em;
  }
  
  #left-shift {
    width: 10em;
  }
  
  #enter {
    width: 8em;
  }
  
  #right-shift {
    width: 10em;
  }
  
  #back {
    width: 6em;
  }
  
  .pinky { 
    background-color: #6714dc;
    border: 1px solid white;
    border-radius: 5px;
  }
 
  
  .ring { 
    background-color: #f050ff;
    border: 1px solid white;
    border-radius: 5px;
  }
  
  
  .middle { 
    background-color: #8c0d79;
    border: 1px solid white;
    border-radius: 5px;
  }
 
  
  .pointer1st { 
    background-color: #007bff;
    border: 1px solid white;
    border-radius: 5px;
  }
 
  
  .pointer2nd { 
    background-color: #9df08c;
    border: 1px solid white;
    border-radius: 5px;
    color: #082802;
  }
 
  .fill-out-key {
    background-color: #708090;
    border: 1px solid white;
    border-radius: 5px;
  }
  
  .selected {
    border-radius: 5px;
  }

  #seconds{
    color:#9df08c;
  }
  
  /* ----------------------------------------------
   * Generated by Animista
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */
  
  .hit {
      -webkit-animation: hit 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
              animation: hit 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  }
  
  @-webkit-keyframes hit {
    0% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes hit {
    0% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  