* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
image {
  height: 10em;
  width: 10em;
}
body {
  background-color: rgb(27, 4, 24);
}
header {
  padding: 10px;
  font-size: 30px;
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
  color: rgb(27, 4, 24);
  background: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.score-board {
  border: 3px solid white;
  margin: 20px auto;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 46px;
  width: 200px;
  color: white;
  text-align: center;
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.badge {
  background: rgb(239, 11, 11);
  color: white;
  font-size: 14px;
  padding: 2px 10px;
  border: 2px solid black;
  border-radius: 2px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#user-label {
  position: absolute;
  top: 30px;
  left: -25px;
  border-radius: 2px;
}
#computer-label {
  position: absolute;
  top: 30px;
  right: -25px;
  border-radius: 2px;
}
#name {
  color: black important;
}
.result {
  font-size: 25px;
  color: white;
}
.result > p {
  text-align: center;
  padding: 20px;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.choices {
  margin-top: 50px;
  text-align: center;
}
.choice {
  border: 4px solid white;
  border-radius: 50%;
  padding: 20px;
  margin: 0px 20px;
  display: inline-block;
  transition: all 0.5s ease;
}
.choice:hover {
  cursor: pointer;
  background: rgb(43, 1, 33);
}

#action-msg {
  font-size: 20px;
  color: white;
  margin-top: 30px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
}

p {
  font-size: 40px;
  color: white;
  margin-top: 30px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
}


.red-glow {
  border: 4px solid rgba(255, 0, 0, 0.527);
  box-shadow: 0 0 15px red;
}
.green-glow {
  border: 4px solid rgba(0, 128, 0, 0.55);
  box-shadow: 0 0 15px green;
}
.gray-glow {
  border: 4px solid rgba(128, 128, 128, 0.546);
  box-shadow: 0 0 15px gray;
}
.end-game{
  border: 4px solid white;
  padding: 10px;
  margin: 0px 10px;
  display: center;
  font-size: 20px;
  color: white; 
  text-align: center;
  transition: all 0.5s ease;
}
.end-game:hover {
  cursor: pointer;
  background: rgb(255, 0, 0);
}

