* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
}

body {
  background-color: #25272e;
}

header {
  background-color: white;
  padding: 20px;
}

header h1 {
  color: #25272e;
  text-align: center;
  font-size: 40px;
}

#scoreboard {
  margin: 20px auto 50px;
  border: 3px solid white;
  border-radius: 3px;
  text-align: center;
  width: 200px;
  color: white;
  font-size: 46px;
  padding: 15px 20px;
  position: relative;
}

.badge {
  background-color: #e25840;
  color: white;
  font-size: 15px;
  padding: 5px 10px;
}

#user-label {
  position: absolute;
  top: 30px;
  left: -30px;
}

#comp-label {
  position: absolute;
  top: 30px;
  right: -38px;
}

.result {
  font-size: 30px;
  color: #e25840;
  text-align: center;
  font-weight: bold;
}

.choices {
  margin: 50px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.choice {
  background-color: white;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.choice:hover {
  background-color: #e25840;
  cursor: pointer;
}

#action-message {
  text-align: center;
  color: white;
  font-size: 25px;
  font-weight: bold;
}

.green-glow{
  border: 3px solid #4dcc7d !important; 
  box-shadow: 0 0 10px #31b43a;
}

.red-glow{
  border: 3px solid #fc121b !important; 
  box-shadow: 0 0 10px #d01115;
}

.tooltip{
  position: relative;
}

.tooltip .tooltip-text{
  visibility: hidden;
  position: absolute;
  z-index: 1;
  bottom: 105%;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  background-color: #FFF;
  color: #e25840;
  text-align: center;
  padding: 5px;
  border-radius: 3px;
}

.tooltip .tooltip-text::after{
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #FFF transparent transparent transparent;
}

.tooltip:hover .tooltip-text{
  visibility: visible;
}