body{
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  background-color: white;
  flex-direction: column;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65vw;
  height: 65vw;
  background-color: white;
  flex-direction: column;
  position: relative;
}
#gameBoard {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
  border: 10px solid transparent;
  box-sizing: border-box;
  background-color: rgb(27 112 241);
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}
.square{
  width: 14.28%;
  height: 16.67%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  border: 5px solid rgb(27 112 241);
  border-radius: 50%;
  background-color: whitesmoke;
}
.piece {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.piece img {
  max-width: 120%;
  width: 120%;
  height: 120%;
  background: transparent;
}
.buttonContainer {
  display: flex;
  width: 98vw;
  height: 60px;
  align-items:center;
  justify-content: end;
  background-color: #ebeef1;
  border-radius: 10px;
  padding: 10px;
}

.buttonContainer button {
  width: 140px;
  height: 50px;
  border-radius: 5px;
  border: none;
  background-color: dodgerblue;
  color: whitesmoke;
  font-weight: bold;
  font-size: 16px;
}
@keyframes blink {
  0% {opacity: 1;}
  50% {opacity: 0.3;}
  100% {opacity: 1;}
}























#alert {
  position: absolute;
  color:#f90769;
  background: #eeeef1;
  border-radius: 5px;
  width:100%;
  height: 10vh;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size:xx-large;
  font-weight: bold;
  z-index: 1000;
  display: none;
}

@media (min-width:600px) {
  .container {
      width:500px;
      height: 500px;
  }

}
