body {
  background-image: url("./Images/image.png");
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: fixed;
  background-size: cover;
}

.move-icon {
  height: 50px;
}

.play-button {
  background-color: rgb(25, 25, 25);
  border: 3px solid white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: rgb(35, 35, 35);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.result {
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.score {
  margin-top: 60px;
}

.reset-score-button, .auto-play-button {
  background-color: white;
  border: none;
  font-size: 15px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 5px;
  color: rgb(25, 25, 25);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.reset-score-button:hover, .auto-play-button:hover {
  background-color: rgb(240, 240, 240);
  transform: scale(1.05);
}

.spr-game {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px;
  border: 2px solid white;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-sizing: border-box;
  background: linear-gradient(145deg, rgb(40, 40, 40), rgb(20, 20, 20));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}





   
