body, html {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: black;
  }
  
  #container {
    width: 312px;
    height: 418px;
    padding: 0;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, 0%);
    /*border: 1px solid red;*/
  }
  
  .me {
    position: relative;
    background-size: 308px 418px;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 2px;
    margin-top: 0px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: 0.2s;
  }
  
  .full {
    width: 312px;
    height: 418px;
    border-radius: 15px;
  }
  
  .me_0 {
    height: 100px;
    width: 100px;
    background-position: -0px -0px;
  }
  
  .me_1 {
    height: 100px;
    width: 100px;
    background-position: -100px -0px;
  }
  
  .me_2 {
    height: 100px;
    width: 100px;
    background-position: -200px -0px;
  }
  
  .me_3 {
    height: 100px;
    width: 100px;
    background-position: -0px -100px;
  }
  
  .me_4 {
    height: 100px;
    width: 100px;
    background-position: -100px -100px;
  }
  
  .me_5 {
    height: 100px;
    width: 100px;
    background-position: -200px -100px;
  }
  
  .me_6 {
    height: 100px;
    width: 100px;
    background-position: -0px -200px;
  }
  
  .me_7 {
    height: 100px;
    width: 100px;
    background-position: -100px -200px;
  }
  
  .me_8 {
    height: 100px;
    width: 100px;
    background-position: -200px -200px;
  }
  
  .me_9 {
    height: 100px;
    width: 100px;
    background-position: -0px -300px;
  }
  
  .me_10 {
    height: 100px;
    width: 100px;
    background-position: -100px -300px;
  }
  
  .me_11 {
    height: 100px;
    width: 100px;
    background-position: -200px -300px;
  }
  
  .prevent_click {
    pointer-events: none;
  }
  
  .correct {
    border-radius: 0px;
    box-shadow: 0 0 0 transparent, 0 0 0 transparent;
    animation: corect 0.5s ease;
    animation-delay: 0.2s;
  }
  
  @keyframes corect {
    0% {
      transform: scale(1);
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    50% {
      transform: scale(1.25);
      border-radius: 5px;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    100% {
      transform: scale(1);
      border-radius: 0px;
      box-shadow: 0 0 0 transparent, 0 0 0 transparent;
    }
  }
  .pre_img {
    margin-top: 10px;
    width: 100%;
    position: absolute;
    left: 100px;
  }
  
  .pre_img li {
    display: inline-block;
    list-style: none;
  }
  
  .pre_img li img {
    width: 150px;
    height: 75px;
    position: relative;
    cursor: pointer;
  }
  
  .cover {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.38);
    width: 100%;
    height: 100%;
    z-index: 9999;
  }
  
  .score {
    margin: 13% auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #666;
    width: 300px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
  }
  
  #scr_head {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: #3d3d3d;
  }
  
  #scr_time {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: #3d3d3d;
  }
  
  #scr_moves {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: #3d3d3d;
  }
  
  .start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 18px 45px;
  }
  
  .reset {
    position: absolute;
    margin: 0 auto;
    padding: 18px 45px;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  
  .OK {
    padding: 8px 25px;
    float: right;
    cursor: pointer;
  }
  
  .button {
    margin: 0px 10px 10px 0px;
    border-radius: 10px;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 25px;
    color: #FFF;
    text-decoration: none;
    background-color: #57b87b;
    z-index: 999;
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
  
  .button:active {
    border-bottom: 1px solid #BD3E31;
  }
  
  .i {
    text-align: center;
    font-family: "Lucida Console", "Courier New", monospace;
    font-weight: 550;
    color: #3c3c3c;
  }