* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

body {
  background-color: #fff066; 
  padding: 1vmin;
}

/* Title */
h1 {
  background-color: #081b31;
  color: whitesmoke;
  height: 10vmin;
  font-size: 4.5vmin;
  line-height: 10vmin;
  letter-spacing: 0.1rem;
  text-align: center;
  border-radius: 0.5rem;
}

/* Choices Container */
.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vmin;
  margin-top: 25vmin;
  flex-wrap: wrap;
}

/* Individual Choice */
.choice {
  height: 25vmin;
  width: 25vmin;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  background-color: #e0e7ff;
  box-shadow: 0 0.5vmin 1vmin rgba(0, 0, 0, 0.15);
}
.choice:hover {
  cursor: pointer;
  background-color: #081b31;
  opacity: 0.8;
}

/* Choice Image */
img {
  height: 95%;
  width: 95%;
  object-fit: cover;
  border-radius: 50%;
  border: 0.3vmin solid #333;
  padding: 0.9vmin;
  background-color: white;
}

/* Score Board */
.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6vmin;
  font-size: 2.5vmin;
  gap: 8vmin;
}
#user-score,
#comp-score {
  font-size: 10vmin;
  color: #4caf50;
}

.para{
  margin-top: 1rem;
  margin-bottom:0; 
  padding: 0;
}
/* Message */
.msg-container {
  margin-top: 70px;
}
#msg {
  /* background-color: rgb(127, 242, 255); */
  background-color: black;
  color: white;
  font-size: 4.5vmin;
  display: inline-block;
  padding: 1.5vmin 5vmin;
  border: 1px solid black;
  border-radius: 0.5rem;
  box-shadow: 0 0.5vmin 1vmin rgba(0, 0, 0, 0.1);
  font-weight: 800;
}
