* {
  margin: 0;
  padding: 0;
}

h1 {
  background-color: #081b31;
  color: white;
  height: 5rem;
  text-align: center;
  line-height: 5rem;
}

.choice {
  height: 165px;
  width: 165px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice:hover {
  /* opacity: 0.5; */
  cursor: pointer;
  background-color: #081b31;
}

img {
  height: 150px;
  width: 150px;
  border: 5px solid #081b31;
  border-radius: 50%;
  object-fit: cover;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.score-board {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
  font-size: 1.5rem;
}

#user-score,
#computer-score {
  font-size: 4rem;
}

.msg-container {
  margin-top: 3rem;
  /* margin-left: 35%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#msg {
  display: inline;
  justify-content: center;
  align-items: center;
  background-color: #081b31;
  width: auto;
  color: white;
  height: 3rem;
  font-size: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}
