
.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 {
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
.images-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap; 
  margin-top: 82px;
  border-radius: 12px;
}
.image-container {
  position: relative;
  width: 360px;
  height: 360px;
  border: 4px solid #fff;
  border-radius: 12px;
  -webkit-box-shadow: -20px 18px 23px -9px rgba(0,0,0,0.26);
-moz-box-shadow: -20px 18px 23px -9px rgba(0,0,0,0.26);
box-shadow: -20px 18px 23px -9px rgba(0,0,0,0.26);
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.highlight {
  position: absolute;
  border: 3px solid orange;
  background-color: rgb(255, 106, 0, 0.7);
  display: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: -25px; 
  left: -25px; 
}
.status {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}
.info {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .images-container {
      flex-direction: column; 
      gap: 10px;
  }
  .image-container {
      width: 360px; 
      max-width: 360px;
      height: 360px;
      margin-left: calc(50% - 180px)
  }
}

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  z-index: 9999;  
  display: none; 
}

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