body {
  background-color: rgb(25, 25, 25);
  color: white;
  font-family: Arial;
  /* Add these 3 lines */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
    .title{
      font-size: 30px;
      font-weight: bold;
    }

    .move-icon {
  height: 40px;
  width: auto;
}
  .move-button {
  background-color: transparent;
  border: 3px solid white;
  /* Set fixed dimensions so they are identical */
  width: 150px;
  height: 60px;

  /* Use flexbox to center the icon and text perfectly */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Adds space between the emoji and the word */

  border-radius: 8px; /* Slightly rounded corners look more modern than sharp ones */
  margin-bottom: 10px;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}
.move-button, .reset-score-button {
  transition: all 0.2s ease; /* This makes the scale/opacity change smooth */
}
.move-button:active {
  transform: scale(0.95); /* Slightly shrinks when clicked */
  background-color: rgba(255, 255, 255, 0.1); /* Adds a subtle highlight */
}
    .result {
  font-size: 30px; /* Slightly larger */
  font-weight: bold;
  margin-top: 40px;
  text-transform: uppercase; /* Makes "Tie" or "You Win" look more dramatic */
}

.score {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 1px;
}
.result, .score {
  /*fadeIn' animation */
  animation: fadeIn 0.5s ease-out;
}

.reset-score-button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-size: 15px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.reset-score-button:hover {
  background-color: white;
  color: rgb(25, 25, 25); /* Inverts colors on hover */
}

button:hover {
  transform: scale(1.05);
  opacity: 1;
  /* add glow effect */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); /* Starts slightly higher */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Settles into place */
  }
}