.container{
    background-color: #c1cbd6;
    margin-top: 10px;
    height: 300px;
    width: 310px;
    padding: 10PX;
    margin-left: auto;
    margin-right: auto;
}

#help, #hide{
  display: block;
  width: 350px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0.6;
  border-radius: 15px;
  box-shadow: 0 5px #999;
  background-color: rgba(0, 0, 0, 0.808);
  color: #fff;
  font-weight: bolder;
  font-size: 100%;
}
#help:hover, #hide:hover{
  opacity: 1;
}
#hide{
  display: none;
}
#helpcontent{
  display: none;
  background-color: antiquewhite;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 150%;
  font-size: 115%;
  padding: 5px;
}
#symbol{
  color: #b61919;
}
#AI{
  margin-top: 20px;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 50px;
  font-weight: 900;
  background-color: rgb(255, 255, 255);
  color: rgb(255, 0, 0);
  border-radius: 10px;
  text-align: center;
  padding-top: 8px;
  font-size: 104%;
  letter-spacing: -1px;
}
#mm{
  position: relative;
  top: -45px;
  right: -220px;
  border-radius: 50%;
  padding: 5px;
  height: 30px;
  width: 250px;

}
form{  
  display: flex;  
  width: 330px;
    margin-left: auto;
    margin-right: auto;
}
.restart, #start, #Reset, #pause, #play{
  color: white;
  font-size: 200%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1%;
  border: solid white;
  border-radius: 20px;
}
.restart{
  background-color: rgb(179, 54, 54);
  width: 330px;
  margin-top: 5%;
}
#start, #pause{
  width: 120px;
  background-color: #04AA6D;
}
#pause, #play{
  display: none;
}
#play{
  background-color: #0b5ed7;
  width: 120px;
}
#Reset{
  width: 120px;
  background-color: rgb(97, 11, 236);
  margin-left: 90px;
}
.srb{
  display: flex;
  width: 330px;
  margin-left: auto;
  margin-right: auto;
}
#message, #sm, #pm{
  visibility: hidden;
  min-width: 500px;
  background-color: yellow;
  color: black;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  margin-top: -20%;
}
#message.show, #sm.show, #pm.show{
  visibility: visible;
  opacity: 1;
}
#over, #winner{
  visibility: hidden;
  color: red;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 400%;
  font-weight: bolder;
  text-align: center;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 35%;
  transform: translateX(-50%);
  opacity: 0;
  width: 1000px;
}
#over.show, #winner.show{
  visibility: visible;
  opacity: 1;
}
#remain, h1{
  text-align: center;
  display: block;
}
h1{
  font-size: 300%;
}
#remain{
  font-size: 165%;
  color: #be4f1b;
  font-weight: bolder;
}
#steps{
    background-color: #04AA6D;
    display: block;
}
#myProgress {
  background-color: #b61919;
  display: flex;
}
  #steps, #myProgress {
      text-align: right;
      width: 165px;
      height: 30px;
      line-height: 30px;
      color: white;
      font-size: 150%;
      font-weight: bolder;
}
  #css9{
    color: #c1cbd6;
    background-color: #c1cbd6;
    border-radius: 10px;
    height: 100px;
    width: 100px;
    font-size: 500%;
  }
  #css1, #css2, #css3, #css4, #css5, #css6, #css7, #css8{
    color: #fff;
    /* background-color: #0d6efd;
    border-color: #0d6efd; */
    border-radius: 10px;
    height: 100px;
    width: 100px;
    font-size: 500%;
  }

  #css1:hover, #css2:hover, #css3:hover, #css4:hover, #css5:hover, #css6:hover, #css7:hover, #css8:hover{
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    border-radius: 10px;
    height: 100px;
    width: 100px;
    font-size: 500%;
  }
  .right{
    position: relative;
    animation: right;
    animation-duration: 0.3s;
    animation-timing-function: linear;
  }
  @keyframes right {
    from{left: 0px;}
    to{left: 100px;}
  }
  .left{
    position: relative;
    animation: left;
    animation-duration: 0.3s;
    animation-timing-function: linear;
  }
  @keyframes left {
    from{left: 0px;}
    to{left: -100px;}
  }
  .up{
    position: relative;
    animation: up;
    animation-duration: 0.3s;
    animation-timing-function: linear;
  }
  @keyframes up {
    from{left: 0px; top: 0px;}
    to{left: 0px; top: 100px;}
  }
  .down{
    position: relative;
    animation: down;
    animation-duration: 0.3s;
    animation-timing-function: linear;
  }
  @keyframes down {
    from{left: 0px; top: 0px;}
    to{left: 0px; top: -100px;}
  }