* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body, html {
  width: 100%;
  height: 100%;
  background: #2b0035;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.container {
  width: 100%;
  max-width: 700px;
  background-color: purple;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 5px 5px 50px rgb(244, 163, 244);
}

.choices {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  gap: 10px;
  flex-wrap: wrap;
}
.choice {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}
.choice:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ff66d8;
}
.choice img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.score-board {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}
.score p {
  font-size: 1.5rem;
}

.msg-container {
  margin-top: 20px;
}
#msg {
  background-color: rgb(230, 154, 230);
  padding: 20px;
  font-size: 20px;
  color: purple;
  font-weight: 900;
  border-radius: 10px;
  text-shadow: 2px 2px 5px rgb(233, 136, 233);
  transition: all 0.3s ease-in-out;
}
.bounce {
  animation: bounce 0.5s;
}
@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 600px) {
  .choice {
    width: 80px;
    height: 80px;
  }
  .score p {
    font-size: 1.2rem;
  }
  #msg {
    font-size: 16px;
  }
}
