* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.heading {
  text-align: center;
  font-size: 2rem;
  padding: 19px 0;
  color: white;
  background-color: rgb(85, 85, 98);
  height: 5rem;
}
.heading h1 {
  color: rgb(255, 255, 255);
  padding: 10px;
}

/* start with the container */
.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  gap: 50px;
  /* border: 2px solid red; */
}
.choices div img {
  width: 150px;
  cursor: pointer;
  /* object-fit: cover; */
}
.choices div img:hover {
  transform: scale(1.1);
  /* opacity: 0.8; */
  transition: all 0.3s ease-in-out;
}
.choices div img:active {
  transform: scaleX(1.8);
  transform: scaleY(0.8);
}
.score-board {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  font-size: 1rem;
}
.others {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.message {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 20px;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 10px;
  padding: 10px;
  background-color: rgb(51, 73, 234);
}
.message:hover {
  background-color: rgb(255, 0, 0);
  color: white;
  cursor: pointer;
}

#user-score,
#comp-score {
  font-size: 2rem;
  font-weight: bold;
}
