* {
  margin: 0;
  padding: 0;
  text-align: center;
}

h1 {
  background-color: #081b31;
  color: #fff;
  height: 5rem;
  line-height: 5rem;
}

.choice {
  height: 165px;
  width: 165px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice:hover {
  cursor: pointer;
  background-color: #143255;
}

img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-top: 3rem;
  gap: 2rem;
  margin-left: 18px;
}

.score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#user-score,
#comp-score {
  font-size: 4rem;
}

.msg-container {
  margin-top: 5rem;
}

#msg {
  background-color: #081b31;
  color: #fff;
  font-size: 2rem;
  display: inline;
  padding: 1rem;
  border-radius: 1rem;
  margin-left: 18px;
}
h3 {
  position: fixed;
  bottom: 10px;
  right: 7px;
  /* z-index: 10; */
  font-size: 19px;
  margin-bottom: 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .choices {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 1rem;
  }
  .choice {
    height: 120px;
    width: 120px;
  }
  img {
    height: 110px;
    width: 110px;
  }
  .score-board {
    flex-direction: row;
    gap: 1rem;
  }
  .score {
    flex-direction: column;
    text-align: center;
  }
  #user-score, #comp-score {
    font-size: 3rem;
  }
  #msg {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
    height: 4rem;
    line-height: 4rem;
  }
  .choices {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
  }
  .choice {
    height: 100px;
    width: 100px;
  }
  img {
    height: 90px;
    width: 90px;
  }
  .score-board {
    flex-direction: row;
    gap: 1rem;
  }
  .score {
    flex-direction: column;
    text-align: center;
  }
  #user-score, #comp-score {
    font-size: 2.5rem;
  }
  #msg {
    font-size: 1.2rem;
    padding: 0.6rem;
  }
}
