*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body {
    font-family: Tahoma, Arial;
   
}
  .row{
    display: flex;
  }
  hr{
    border: 1px solid #eee;
  }
  /* game-info */
  .game-info{
    display: flex;
    margin-bottom: 20px;
  }
  .game-info .game-name{
    flex: 1;
    font-weight: 700;
  }
  .game-info .category{
    flex: 1;
    text-align: right;
  }
  .game-info .category span{
    text-transform: capitalize;
    color: #e91e63;
    font-weight: bold;
  }
  /* hangman-draw */
  .hangman-draw{
    flex: 1;
    background-color: #f8f8f8;
    padding: 20px;
    height: 324px;
  }
  .hangman-draw .the-draw{
    width: 60px;
    height: 280px;
    border-bottom: 4px solid #222;
    position: relative;
    margin: auto;
    left: -60px;
    display: none;
  }
  .hangman-draw .the-draw .the-stand{
    position: absolute;
    width: 4px;
    background-color: #222;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
  .hangman-draw .the-draw .the-hang{
    display: none;
  }
  .hangman-draw .the-draw .the-hang::before{
    content: '';
    position: absolute;
    width: 100px;
    background-color: #222;
    height: 4px;
    left: 30px;
    top: 15px;
  }
  .hangman-draw .the-draw .the-hang::after{
    content: '';
    position: absolute;
    width: 4px;
    background-color: #222;
    height: 30px;
    left: 130px;
    top: 15px;
  }
  .hangman-draw .the-draw .the-rope{
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 95px;
    top: 45px;
    border: 4px dashed #222;
    display: none;
  }
  .hangman-draw .the-draw .the-man .head{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 105px;
    top: 55px;
    border: 4px solid #222;
    display: none;
  }
  .hangman-draw .the-draw .the-man .body{
    position: absolute;
    background: #222;
    width: 4px;
    height: 110px;
    left: 130px;
    top: 102px;
    display: none;
  }
  .hangman-draw .the-draw .the-man .hands{
    display: none;
  }
  .hangman-draw .the-draw .the-man .hands::before,
  .hangman-draw .the-draw .the-man .hands::after{
    content: '';
    position: absolute;
    background: #222;
    width: 50px;
    height: 4px;
    top: 140px;
  }
  .hangman-draw .the-draw .the-man .hands::before{
    left: 85px;
    transform: rotate(30deg);
  }
  .hangman-draw .the-draw .the-man .hands::after{
    left: 130px;
    transform: rotate(-30deg);
  }
  .hangman-draw .the-draw .the-man .legs{
    display: none;
  }
  .hangman-draw .the-draw .the-man .legs::before,
  .hangman-draw .the-draw .the-man .legs::after{
    content: '';
    position: absolute;
    background: #222;
    width: 50px;
    height: 4px;
    top: 220px;
  }
  .hangman-draw .the-draw .the-man .legs::before{
    left: 85px;
    transform: rotate(-30deg);
  }
  .hangman-draw .the-draw .the-man .legs::after{
    left: 130px;
    transform: rotate(30deg);
  }
  /*  wrong hangman-draw */
  .hangman-draw.wrong-1 .the-draw{
    display: block;
  }
  .hangman-draw.wrong-2 .the-draw .the-stand{
    display: block;
  }
  .hangman-draw.wrong-3 .the-draw .the-hang{
    display: block;
  }
  .hangman-draw.wrong-4 .the-draw .the-rope{
    display: block;
  }
  .hangman-draw.wrong-5 .the-draw .the-man .head{
    display: block;
  }
  .hangman-draw.wrong-6 .the-draw .the-man .body{
    display: block;
  }
  .hangman-draw.wrong-7 .the-draw .the-man .hands{
    display: block;
  }
  .hangman-draw.wrong-8 .the-draw .the-man .legs{
    display: block;
  }
  /* letters */
  .letters{
    flex: 1;
    padding: 15px;
    text-align: center;
  }

  .letters.success{
    pointer-events: none;
  }
  .letters.finished{
    pointer-events: none;
  }
  .letters .letter-box{
    width: 55px;
    height: 55px;
    display: inline-block;
    background-color: #009688;
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .letters .letter-box.clicked{
    background-color: #222;
    opacity: 0.2;
    pointer-events: none;
  }
  /* letters-guess */
  .letters-guess{
    margin: 10px;
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 104px;
    margin-top: 10px;

  }
  .letters-guess span{
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-right: 10px;
    text-align: center;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #fdfdfd;
    border-bottom: 3px solid #222;
    transition: 0.3s;
  }
  .letters-guess .with-space{
    background: none;
    border: none;
    position: relative;
  }
  .letters-guess .with-space::before{
    content: '';
    width: 20px;
    height: 4px;
    background-color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  /* popup */
  .popup{
    position: fixed;
    background-color: #009688;
    padding: 100px 20px;
    width: 80%;
    top: 10%;
    left: 10%;
    text-align: center;
    font-size: 30px;
    border: 1px solid #CCC;
    color: #FFF;
  }
  .popup.popup-wrong{
    background-color: rgb(255, 46, 46);
  }
  .popup.popup-success{
    background-color: #009688;
  }









  /* .hangman-draw {
  }
  .the-draw {
  }
  .the-stand {
  }
  .the-hang {
  }
  .the-rope {
  }
  .the-man {
  }
  .head {
  }
  .body {
  }
  .hands {
  }
  .legs {
  }
   */