body {
  background: linear-gradient(135deg, #8ec5fc, #e0c3fc);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.game {
  background: white;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

.choices button {
  font-size: 1.2em;
  margin: 10px;
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.choices button:hover {
  background: #8ec5fc;
  color: white;
}

.result {
  margin-top: 20px;
}

#winner {
  color: #2a2a2a;
  margin-top: 15px;
  font-size: 1.5em;
}

.restart {
  margin-top: 25px;
  background-color: #ff7675;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  transition: 0.3s;
}

.restart:hover {
  background-color: #d63031;
}
p{
  bottom:-40px
}
