body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.game-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

h1 {
  grid-column: 1 / span 3;
}

.choice-img {
  width: 150px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s ease-in-out;
}

.choice-img:hover {
  border-color: #333;
}

#result {
  grid-column: 1 / span 3;
  margin-top: 30px;
  font-size: 24px;
}

#score {
  grid-column: 1 / span 3;
  margin-top: 20px;
  font-size: 20px;
}

.win {
  background-color: green;
  color: white;
}

.lose {
  background-color: red;
  color: white;
}

.button-link {
   display: inline-block;
   padding: 10px 20px;
   background-color: #007bff;
   color: #ffffff;
   text-align: center;
   border-radius: 5px;
   text-decoration: none; /* Removes the underline from links */
   font-weight: bold;
   transition: background-color 0.3s; /* Smooth background color transition on hover */
 }

 .button-link:hover, .button-link:focus {
   background-color: #0056b3;
   color: #FFFFFF;
   text-decoration: none; /* Keeps the underline off on hover/focus */
 }
