
.speakerCloseMed {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../imgs/sclose.png) center center no-repeat;
  top: 20px;
  right: 20px;
  z-index: 5000000;
  cursor: pointer;
}

body
{
  background-color: #695aa6;
}

.gameMemoryContainer {
  font-family: "Baloo Paaji";
  background-color: #695aa6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -2;
  color: #fff;
}


.game-container {
  margin: auto;
}
.choices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}
.choice {
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.2s;
}
.choice:hover {
  transform: scale(1.2);
}
.result {
  margin: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
.selections {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
}
.selection {
  width: 130px;
  height: 130px;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  opacity: 0;
}
.show-selection {
  transform: scale(1.5) rotate(720deg);
  opacity: 1;
}
button {
  background: #ffa800;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  margin: 20px auto;
  padding: 10px 20px ;
  font-family: "Baloo Paaji";
  font-size: 26px;
  color:#fff;
  transition: background-color 0.3s;
  margin-left: calc(50% - 51px);
  margin-top: 50px;
}
button:hover {
  background-color: #ff7700;
}
button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
.scoreboard {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 18px;
}
.score {
  margin: 0 20px;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  margin-top: 30px;
}
#player-score
{
  color: #ffa800;
  font-size: 56px;
}
#computer-score
{
  color: #ffa800;
  font-size: 56px;
}
#trophy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 300px;
  height: 400px;
}

#restart-button {
  display: block;
  background: #ffa800;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  margin: 20px auto;
  padding: 10px 20px ;
  font-family: "Baloo Paaji";
  font-size: 23px !important;
  color:#fff;
  transition: background-color 0.3s;
}

#restart-button:hover {
  background: #ff7700;
}