@font-face {
  font-family: f;
  src: url("./media/Blackberry-One.ttf");
}
body {
  padding: 0;
  margin: 0;
}

#full-area {
    width: 100%;
    height: 100vh;
    position: absolute;
    user-select: none;
    background-color: #2b1b17;
    font-family: f;
    color: white;
}
#full-area #bg-color {
  background: #2b1b174a;
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area, #full-area iframe {
  width: 600px;
  height: 500px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#full-area #game-area #home-section, #full-area #game-area #choosePieces-section, #full-area iframe #home-section, #full-area iframe #choosePieces-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #home-section .content, #full-area #game-area #choosePieces-section .content, #full-area iframe #home-section .content, #full-area iframe #choosePieces-section .content {
  width: 80%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#full-area #game-area #home-section .content h1, #full-area #game-area #choosePieces-section .content h1, #full-area iframe #home-section .content h1, #full-area iframe #choosePieces-section .content h1 {
  font-size: 50px;
}
#full-area #game-area #home-section .content h2, #full-area #game-area #choosePieces-section .content h2, #full-area iframe #home-section .content h2, #full-area iframe #choosePieces-section .content h2 {
  font-size: 25px;
  margin-top: -10px;
}
#full-area #game-area #home-section .content .pieces-option, #full-area #game-area #choosePieces-section .content .pieces-option, #full-area iframe #home-section .content .pieces-option, #full-area iframe #choosePieces-section .content .pieces-option {
  width: 90%;
  max-width: 350px;
  background-color:transparent;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  margin: 20px auto;
  margin-top: 0;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.158);
}
#full-area #game-area #home-section .content .pieces-option:hover, #full-area #game-area #choosePieces-section .content .pieces-option:hover, #full-area iframe #home-section .content .pieces-option:hover, #full-area iframe #choosePieces-section .content .pieces-option:hover {
  filter: brightness(1.3);
  background: #000;
}
#full-area #game-area #home-section .content .pieces-option:active, #full-area #game-area #choosePieces-section .content .pieces-option:active, #full-area iframe #home-section .content .pieces-option:active, #full-area iframe #choosePieces-section .content .pieces-option:active {
  transform: scale(0.98);
}
#full-area #game-area #home-section .content .pieces-option img, #full-area #game-area #choosePieces-section .content .pieces-option img, #full-area iframe #home-section .content .pieces-option img, #full-area iframe #choosePieces-section .content .pieces-option img {
  height: 60px;
  margin: 0 10px;
}
#full-area #game-area #home-section .content button, #full-area #game-area #choosePieces-section .content button, #full-area iframe #home-section .content button, #full-area iframe #choosePieces-section .content button {
  margin-top: 10px;
  font-size: 30px;
  padding: 5px 0px;
  border: none;
  border-radius: 10px;
  padding-top: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.229);
  transform: scale(0.8);
  outline: none;
  height: 60px;
  width: 300px;
}
#full-area #game-area #home-section .content button:hover, #full-area #game-area #choosePieces-section .content button:hover, #full-area iframe #home-section .content button:hover, #full-area iframe #choosePieces-section .content button:hover {
  opacity: 0.9;
}
#full-area #game-area #home-section .content button:active, #full-area #game-area #choosePieces-section .content button:active, #full-area iframe #home-section .content button:active, #full-area iframe #choosePieces-section .content button:active {
  transform: scale(0.78);
}
#full-area #game-area #home-section .content #home-imgs, #full-area #game-area #choosePieces-section .content #home-imgs, #full-area iframe #home-section .content #home-imgs, #full-area iframe #choosePieces-section .content #home-imgs {
  width: 100%;
  margin-top: 10px;
}
#full-area #game-area #home-section .content #home-imgs img, #full-area #game-area #choosePieces-section .content #home-imgs img, #full-area iframe #home-section .content #home-imgs img, #full-area iframe #choosePieces-section .content #home-imgs img {
  height: auto;
  position: relative;
  width: 30px;
  max-height: 35px;
  filter: brightness(1.2);
  transition: 0.1s;
}
#full-area #game-area #home-section .content #home-imgs img:hover, #full-area #game-area #choosePieces-section .content #home-imgs img:hover, #full-area iframe #home-section .content #home-imgs img:hover, #full-area iframe #choosePieces-section .content #home-imgs img:hover {
  filter: brightness(1.5);
  transform: rotate(30deg);
}
#full-area #game-area #play-section, #full-area iframe #play-section {
  width: 100%;
  height: 100%;
}
#full-area #game-area #play-section #path, #full-area iframe #play-section #path {
  position: absolute;
  height: 100%;
  left: 0%;
  top: 0%;
  z-index: 2;
  display: none;
}
#full-area #game-area #play-section #areYouSure, #full-area #game-area #play-section #end-screen, #full-area #game-area #play-section #map-section, #full-area iframe #play-section #areYouSure, #full-area iframe #play-section #end-screen, #full-area iframe #play-section #map-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999999;
  display: none;
}
#full-area #game-area #play-section #areYouSure .content, #full-area #game-area #play-section #end-screen .content, #full-area #game-area #play-section #map-section .content, #full-area iframe #play-section #areYouSure .content, #full-area iframe #play-section #end-screen .content, #full-area iframe #play-section #map-section .content {
  background: #000000e1;
  padding: 20px;
  position: absolute;
  width: 70%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.229);
}
#full-area #game-area #play-section #areYouSure .content h3, #full-area #game-area #play-section #end-screen .content h3, #full-area #game-area #play-section #map-section .content h3, #full-area iframe #play-section #areYouSure .content h3, #full-area iframe #play-section #end-screen .content h3, #full-area iframe #play-section #map-section .content h3 {
  font-size: 20px;
  text-align: center;
}
#full-area #game-area #play-section #areYouSure .content #areYouSureBtns, #full-area #game-area #play-section #end-screen .content #areYouSureBtns, #full-area #game-area #play-section #map-section .content #areYouSureBtns, #full-area iframe #play-section #areYouSure .content #areYouSureBtns, #full-area iframe #play-section #end-screen .content #areYouSureBtns, #full-area iframe #play-section #map-section .content #areYouSureBtns {
  display: flex;
  justify-content: center;
  width: 100%;
}
#full-area #game-area #play-section #areYouSure .content #areYouSureBtns button, #full-area #game-area #play-section #end-screen .content #areYouSureBtns button, #full-area #game-area #play-section #map-section .content #areYouSureBtns button, #full-area iframe #play-section #areYouSure .content #areYouSureBtns button, #full-area iframe #play-section #end-screen .content #areYouSureBtns button, #full-area iframe #play-section #map-section .content #areYouSureBtns button {
  margin: 0 5px;
  width: 20%;
  outline: none;
  border: none;
  padding-top: 5px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.153);
}
#full-area #game-area #play-section #areYouSure .content #areYouSureBtns button:hover, #full-area #game-area #play-section #end-screen .content #areYouSureBtns button:hover, #full-area #game-area #play-section #map-section .content #areYouSureBtns button:hover, #full-area iframe #play-section #areYouSure .content #areYouSureBtns button:hover, #full-area iframe #play-section #end-screen .content #areYouSureBtns button:hover, #full-area iframe #play-section #map-section .content #areYouSureBtns button:hover {
  opacity: 0.9;
}
#full-area #game-area #play-section #areYouSure .content #areYouSureBtns button:active, #full-area #game-area #play-section #end-screen .content #areYouSureBtns button:active, #full-area #game-area #play-section #map-section .content #areYouSureBtns button:active, #full-area iframe #play-section #areYouSure .content #areYouSureBtns button:active, #full-area iframe #play-section #end-screen .content #areYouSureBtns button:active, #full-area iframe #play-section #map-section .content #areYouSureBtns button:active {
  transform: scale(0.98);
}
#full-area #game-area #play-section #areYouSure .content svg, #full-area #game-area #play-section #end-screen .content svg, #full-area #game-area #play-section #map-section .content svg, #full-area iframe #play-section #areYouSure .content svg, #full-area iframe #play-section #end-screen .content svg, #full-area iframe #play-section #map-section .content svg {
  position: relative;
  margin-top: -20px;
  left: 100%;
  cursor: pointer;
  transform: translateX(-50%);
}
#full-area #game-area #play-section #areYouSure .content img, #full-area #game-area #play-section #end-screen .content img, #full-area #game-area #play-section #map-section .content img, #full-area iframe #play-section #areYouSure .content img, #full-area iframe #play-section #end-screen .content img, #full-area iframe #play-section #map-section .content img {
  height: 310px;
  border-radius: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #play-section #play-btns, #full-area iframe #play-section #play-btns {
  position: absolute;
  padding: 10px 5px;
  z-index: 2;
  width: 100%;
}


#full-area #game-area #play-section #play-btns div, #full-area iframe #play-section #play-btns div {
  width: 30px;
  height: 30px;
  background-color:transparent;
  border-radius: 7px;
  position: absolute;
  border: 1px solid white;
  cursor: pointer;
}

#full-area #game-area #play-section #play-btns div:hover, #full-area iframe #play-section #play-btns div:hover {
  background: #509ef3;
}
#full-area #game-area #play-section #play-btns div:active, #full-area iframe #play-section #play-btns div:active {
  transform: scale(0.98);
}
#full-area #game-area #play-section #play-btns div svg, #full-area iframe #play-section #play-btns div svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
#music-on{
  display: none;
}
#full-area #game-area #play-section #play-btns div:nth-child(5), #full-area iframe #play-section #play-btns div:nth-child(5) {
  left: 100%;
  transform: translateX(-100%);
  margin-left: -5px;
}
#full-area #game-area #play-section #play-btns div:nth-child(4), #full-area iframe #play-section #play-btns div:nth-child(4) {
  left: 0%;
  transform: translateX(0%);
  margin-left: 75px;
}
#full-area #game-area #play-section #play-btns div:nth-child(4):active, #full-area iframe #play-section #play-btns div:nth-child(4):active {
  transform: translateX(0%) scale(0.98);
}
#full-area #game-area #play-section #play-btns div:nth-child(5):active, #full-area iframe #play-section #play-btns div:nth-child(5):active {
  transform: translateX(-100%) scale(0.98);
}

#full-area #game-area #play-section #play-btns div:nth-child(2), #full-area iframe #play-section #play-btns div:nth-child(2) {
  left: 100%;
  transform: translateX(-100%);
  margin-left: -40px;
}
#full-area #game-area #play-section #play-btns div:nth-child(2):active, #full-area iframe #play-section #play-btns div:nth-child(2):active {
  transform: translateX(-100%) scale(0.98);
}
#full-area #game-area #play-section #play-btns div:nth-child(3), #full-area iframe #play-section #play-btns div:nth-child(3) {
  left: 0%;
  transform: translateX(0%);
  margin-left: 40px;
}
#full-area #game-area #play-section #play-btns div:nth-child(3):active, #full-area iframe #play-section #play-btns div:nth-child(3):active {
  transform: translateX(0%) scale(0.98);
}
#full-area #game-area #play-section #human-section, #full-area #game-area #play-section #bot-section, #full-area iframe #play-section #human-section, #full-area iframe #play-section #bot-section {
  width: 32%;
  height: 100%;
  padding: 27px;
  text-align: right;
  position: relative;
  padding-right: 0;
  position: absolute;
}
#full-area #game-area #play-section #human-section h6, #full-area #game-area #play-section #bot-section h6, #full-area iframe #play-section #human-section h6, #full-area iframe #play-section #bot-section h6 {
  border-bottom: 2px solid white;
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  font-size: 17px;
}
#full-area #game-area #play-section #human-section p, #full-area #game-area #play-section #bot-section p, #full-area iframe #play-section #human-section p, #full-area iframe #play-section #bot-section p {
  position: absolute;
  margin-top: 27px;
  left: 100%;
  transform: translateX(-100%);
  font-size: 13px;
  opacity: 0.8;
}
#full-area #game-area #play-section #human-section #pieces, #full-area #game-area #play-section #bot-section #pieces, #full-area iframe #play-section #human-section #pieces, #full-area iframe #play-section #bot-section #pieces {
  position: absolute;
  top: 75px;
  left: 100%;
  margin-left: -5px;
  transform: translateX(-100%);
  display: flex;
  filter: brightness(1.1);
}
#full-area #game-area #play-section #human-section #pieces img, #full-area #game-area #play-section #bot-section #pieces img, #full-area iframe #play-section #human-section #pieces img, #full-area iframe #play-section #bot-section #pieces img {
  width: 25px;
  margin: 0 -5px;
}
#full-area #game-area #play-section #human-section #dices, #full-area #game-area #play-section #bot-section #dices, #full-area iframe #play-section #human-section #dices, #full-area iframe #play-section #bot-section #dices {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  width: 180px;
  filter: brightness(1.1);
}
#full-area #game-area #play-section #human-section #dices img, #full-area #game-area #play-section #bot-section #dices img, #full-area iframe #play-section #human-section #dices img, #full-area iframe #play-section #bot-section #dices img {
  width: 100px;
  margin: 7px;
}
#full-area #game-area #play-section #human-section #dices .diceAnim, #full-area #game-area #play-section #bot-section #dices .diceAnim, #full-area iframe #play-section #human-section #dices .diceAnim, #full-area iframe #play-section #bot-section #dices .diceAnim {
  animation: dice 0.2s linear infinite;
}
#full-area #game-area #play-section #human-section .diceBlinkAnim, #full-area #game-area #play-section #bot-section .diceBlinkAnim, #full-area iframe #play-section #human-section .diceBlinkAnim, #full-area iframe #play-section #bot-section .diceBlinkAnim {
  animation: pieceAnim 1s infinite;
}
#full-area #game-area #play-section #human-section #dice-score, #full-area #game-area #play-section #bot-section #dice-score, #full-area iframe #play-section #human-section #dice-score, #full-area iframe #play-section #bot-section #dice-score {
  position: absolute;
  font-size: 30px;
  top: 290px;
  width: 100%;
  text-align: center;
  margin: 0;
  left: 0;
  display: none;
}
#full-area #game-area #play-section #human-section #score, #full-area #game-area #play-section #bot-section #score, #full-area iframe #play-section #human-section #score, #full-area iframe #play-section #bot-section #score {
  top: 100%;
  left: 100%;
  position: absolute;
  transform: translate(-100%, -100%);
  margin-top: -27px;
}
#full-area #game-area #play-section #human-section #score span, #full-area #game-area #play-section #bot-section #score span, #full-area iframe #play-section #human-section #score span, #full-area iframe #play-section #bot-section #score span {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: -25px;
  opacity: 0.8;
}
#full-area #game-area #play-section #human-section h4, #full-area #game-area #play-section #bot-section h4, #full-area iframe #play-section #human-section h4, #full-area iframe #play-section #bot-section h4 {
  width: 100%;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 55%;
  left: 0;
  color: white;
}
#full-area #game-area #play-section #human-section h4 span, #full-area #game-area #play-section #bot-section h4 span, #full-area iframe #play-section #human-section h4 span, #full-area iframe #play-section #bot-section h4 span {
  color: #fc6363;
  text-decoration: underline;
}
#full-area #game-area #play-section #human-section #dices, #full-area iframe #play-section #human-section #dices {
  cursor: pointer;
}
#full-area #game-area #play-section #human-section #dices:hover img, #full-area iframe #play-section #human-section #dices:hover img {
  filter: brightness(1.1);
}
#full-area #game-area #play-section #bot-section, #full-area iframe #play-section #bot-section {
  left: 100%;
  transform: translateX(-100%);
}
#full-area #game-area #play-section #bot-section h6, #full-area #game-area #play-section #bot-section p, #full-area #game-area #play-section #bot-section #score, #full-area #game-area #play-section #bot-section #pieces, #full-area iframe #play-section #bot-section h6, #full-area iframe #play-section #bot-section p, #full-area iframe #play-section #bot-section #score, #full-area iframe #play-section #bot-section #pieces {
  margin-left: 0;
  left: 0;
  transform: none;
}
#full-area #game-area #play-section #bot-section #score, #full-area iframe #play-section #bot-section #score {
  transform: translateY(-100%);
}
#full-area #game-area #play-section #board, #full-area iframe #play-section #board {
  width: 175px;
  height: 450px;
  background: url("./media/board.png");
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #play-section #board #pieces, #full-area iframe #play-section #board #pieces {
  width: 100%;
  height: 100%;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  position: absolute;
  top: 0;
  z-index: 2;
}
#full-area #game-area #play-section #board #pieces .spot, #full-area iframe #play-section #board #pieces .spot {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  margin: 1px;
}
#full-area #game-area #play-section #board #pieces .spot p, #full-area iframe #play-section #board #pieces .spot p {
  position: absolute;
  color: black;
  font-size: 20px;
}
#full-area #game-area #play-section #board #pieces .borderSpot, #full-area iframe #play-section #board #pieces .borderSpot {
  border: 2px dashed yellow;
  animation: spot 10s infinite linear;
}
#full-area #game-area #play-section #board #pieces .borderSpot.hC, #full-area iframe #play-section #board #pieces .borderSpot.hC {
  border: 2px dashed white;
}
#full-area #game-area #play-section #board #pieces .borderSpot.hR, #full-area iframe #play-section #board #pieces .borderSpot.hR {
  border: 2px dashed blue;
}
#full-area #game-area #play-section #board #pieces .endSpot, #full-area iframe #play-section #board #pieces .endSpot {
  border: none;
  background: url("./media/arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px;
  animation: none;
}
#full-area #game-area #play-section #board #pieces .canClickToMove, #full-area iframe #play-section #board #pieces .canClickToMove {
  cursor: pointer;
  z-index: 9999999;
}
#full-area #game-area #play-section #board #pieces, #full-area iframe #play-section #board #pieces {
  width: 110%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
#full-area #game-area #play-section #board #pieces .piece, #full-area iframe #play-section #board #pieces .piece {
  width: 32px;
  transform: translate(0px, 0px);
  left: 0;
  top: 0;
  margin: 0;
  position: absolute;
  display: none;
}
#full-area #game-area #play-section #board #pieces .selectedPiece, #full-area #game-area #play-section #board #pieces .pieceBlink, #full-area iframe #play-section #board #pieces .selectedPiece, #full-area iframe #play-section #board #pieces .pieceBlink {
  animation: pieceAnim 1s infinite;
}
#full-area #game-area #play-section #board #pieces .bot-piece, #full-area iframe #play-section #board #pieces .bot-piece {
  transform: translate(140.5px, 227px);
}
#full-area #game-area #play-section #board #pieces .human-piece, #full-area iframe #play-section #board #pieces .human-piece {
  cursor: pointer;
  transform: translate(12.5px, 227px);
}

@keyframes spot {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dice {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  transform: scale(1);
  position: absolute;
  justify-content: center;
  margin: 0 auto;
  display: flex;
  left: 50%;
  margin-left: -15px;
  margin-top: -17px;
  z-index: 9;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid black;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: black transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pieceAnim {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.5;
    filter: brightness(1.2);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}
@media (max-width: 600px) {
  #full-area #game-area {
    width: 500px;
    height: 1050px;
    top: 50%;
  }
  #full-area #game-area #home-section .content h1 {
    font-size: 60px;
  }
  #full-area #game-area #play-section #map-section .content {
    width: 90%;
    max-width: 1000px;
    display: block;
  }
  #full-area #game-area #play-section #map-section .content svg {
    position: relative;
    margin-top: -320px;
  }
  #full-area #game-area #play-section #map-section .content img {
    left: 45%;
    transform: translateX(-50%);
    margin-top: 20px;
    height: 310px;
  }
  #full-area #game-area #play-section #play-btns {
    padding: 15px 10px;
  }
  #full-area #game-area #play-section #play-btns div {
    transform: scale(1.2);
  }
  #full-area #game-area #play-section #play-btns div:nth-child(3) {
    transform: translateX(0%) scale(1.2);
    margin-left: 55px;
    left: 0;
  }
  #full-area #game-area #play-section #play-btns div:nth-child(3):active {
    transform: translateX(0%) scale(1.18);
  }
  #full-area #game-area #play-section #play-btns div:nth-child(2) {
    left: 100%;
    transform: translateX(-100%) scale(1.2);
    margin-left: -60px;
  }
  #full-area #game-area #play-section #play-btns div:nth-child(2):active {
    transform: translateX(-100%) scale(1.18);
  }
  #full-area #game-area #play-section #play-btns div:nth-child(5) {
    left: 100%;
    transform: translateX(-100%) scale(1.2);
    margin-left: -15px;
  }
  #full-area #game-area #play-section #play-btns div:nth-child(5):active {
    transform: translateX(-100%) scale(1.18);
  }
  #full-area #game-area #play-section #play-btns div:nth-child(4) {
    left: 0;
    transform: translateX(0%) scale(1.2);
    margin-left: 100px;
  }
  #full-area #game-area #play-section #play-btns div:nth-child(4):active {
    transform: translateX(0%) scale(1.18);
  }
  #full-area #game-area #play-section #board {
    top: 46%;
    transform: translate(-50%, -50%) scale(1.5);
  }
  #full-area #game-area #play-section #human-section, #full-area #game-area #play-section #bot-section {
    width: 40%;
  }
  #full-area #game-area #play-section #human-section h6, #full-area #game-area #play-section #bot-section h6 {
    font-size: 23px;
  }
  #full-area #game-area #play-section #human-section p, #full-area #game-area #play-section #bot-section p {
    font-size: 17px;
    margin-top: 35px;
  }
  #full-area #game-area #play-section #human-section #pieces, #full-area #game-area #play-section #bot-section #pieces {
    margin-left: 0px;
    margin-top: 18px;
  }
  #full-area #game-area #play-section #human-section #pieces img, #full-area #game-area #play-section #bot-section #pieces img {
    width: 33px;
    margin: -7.5px;
    height: auto;
  }
  #full-area #game-area #play-section #human-section #dices, #full-area #game-area #play-section #bot-section #dices {
    top: 88%;
    left: 110px;
    transform: translate(-50%, -50%) scale(1.4);
  }
  #full-area #game-area #play-section #human-section #notes, #full-area #game-area #play-section #bot-section #notes {
    top: 79.2%;
    font-size: 23px;
    width: 225%;
    height: 50px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-17%);
  }
  #full-area #game-area #play-section #human-section #notes span, #full-area #game-area #play-section #bot-section #notes span {
    display: none;
  }
  #full-area #game-area #play-section #human-section #score, #full-area #game-area #play-section #bot-section #score {
    font-size: 25px;
    left: 160px;
  }
  #full-area #game-area #play-section #human-section #score span, #full-area #game-area #play-section #bot-section #score span {
    margin-top: -5px;
  }
  #full-area #game-area #play-section #bot-section #pieces {
    margin-left: 2px;
  }
  #full-area #game-area #play-section #bot-section #dices {
    left: 90px;
  }
  #full-area #game-area #play-section #bot-section #score {
    left: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
